You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.md
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,29 @@ This guide will help you get started with Spec-Driven Development using Agentic
10
10
**Note:** Run these steps in a standard terminal before opening the Intelligent IDE.
11
11
**Alignment with 12 Factors:** This stage establishes the foundation guided by [I. Strategic Mindset](https://tikalk.github.io/agentic-sdlc-12-factors/content/strategic-mindset.html) and [II. Context Scaffolding](https://tikalk.github.io/agentic-sdlc-12-factors/content/context-scaffolding.html), positioning the developer as orchestrator and assembling necessary context for AI collaboration.
12
12
13
+
### Choose Your Workflow Mode
14
+
15
+
Specify supports two workflow modes that control development complexity:
16
+
17
+
-**`spec` mode (default)**: Full structured development with comprehensive requirements, research, and validation
18
+
-**`build` mode**: Lightweight approach focused on quick implementation and exploration
19
+
20
+
```bash
21
+
# Check current mode
22
+
specify mode
23
+
24
+
# Switch to lightweight mode for prototyping
25
+
specify mode build
26
+
27
+
# Switch to comprehensive mode for production features
28
+
specify mode spec
29
+
30
+
# Learn more about modes
31
+
specify mode --info
32
+
```
33
+
34
+
**Recommendation:** Start with `build` mode for exploration, switch to `spec` mode when features become complex or need thorough documentation.
35
+
13
36
1.**Project Initialization (`/init`)**
14
37
**Action:** From the project root, run the Agentic SDLC Spec Kit `init` command (e.g., `specify init <project> --team-ai-directives https://github.com/your-org/team-ai-directives.git`) to configure local settings and clone the shared `team-ai-directives` modules.
15
38
**Purpose:** Creates the handshake that brings the repository into the managed Agentic SDLC ecosystem, wiring credentials, endpoints, and shared knowledge needed for subsequent commands.
@@ -109,6 +132,8 @@ This guide will help you get started with Spec-Driven Development using Agentic
109
132
110
133
Initialize your project depending on the coding agent you're using:
111
134
135
+
> **Note:** All slash commands adapt their behavior based on your current workflow mode. Use `specify mode` to check or change modes.
0 commit comments