Skip to content

Commit c96ef4e

Browse files
committed
fix: rename acp constraints to acp check in bootstrap spec
1 parent a384488 commit c96ef4e

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

spec/chapters/14-bootstrap.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
2. [Bootstrap Prompts](#2-bootstrap-prompts)
1414
3. [AI Integration](#3-ai-integration)
1515
4. [CLI Commands](#4-cli-commands)
16-
- [4.1 `acp constraints`](#41-acp-constraints)
16+
- [4.1 `acp check`](#41-acp-check)
1717
- [4.2 `acp map`](#42-acp-map)
1818
- [4.3 `acp query file`](#43-acp-query-file)
1919
- [4.4 `acp query symbol`](#44-acp-query-symbol)
@@ -54,7 +54,7 @@ The minimal bootstrap is sufficient when all annotations include self-documentin
5454

5555
```
5656
This project uses ACP. @acp:* comments in code are directives for you.
57-
BEFORE editing: acp constraints <path>
57+
BEFORE editing: acp check <path>
5858
Explore: acp query symbol|file|domain <name>
5959
Map: acp map <path>
6060
Help: acp knowledge "question"
@@ -76,12 +76,12 @@ This project uses ACP (AI Context Protocol). @acp:* comments in code are
7676
directives that MUST be followed.
7777
7878
WORKFLOW:
79-
1. BEFORE modifying any file, run: acp constraints <path>
79+
1. BEFORE modifying any file, run: acp check <path>
8080
2. Respect lock levels: frozen (never modify), restricted (approval required)
8181
3. Read the directive text after " - " in each annotation
8282
8383
COMMANDS:
84-
- acp constraints <path> - Check file constraints before editing
84+
- acp check <path> - Check file constraints before editing
8585
- acp query file <path> - Get file context with symbols and constraints
8686
- acp query symbol <name> - Get symbol details with callers/callees
8787
- acp query domain <name> - Get domain files and relationships
@@ -154,7 +154,7 @@ AI systems MUST follow this workflow before modifying files:
154154
155155
156156
┌─────────────────────┐
157-
│ acp constraints
157+
│ acp check
158158
│ <target-file> │
159159
└─────────┬───────────┘
160160
@@ -202,7 +202,7 @@ AI systems SHOULD check constraints:
202202
| Action | Check Required |
203203
|--------|----------------|
204204
| Read file | No |
205-
| Modify file | Yes - `acp constraints <path>` |
205+
| Modify file | Yes - `acp check <path>` |
206206
| Delete file | Yes - check for `frozen` |
207207
| Rename file | Yes - check for constraints |
208208
| Create file | No - but check directory patterns |
@@ -223,13 +223,13 @@ When AI needs context about code:
223223

224224
## 4. CLI Commands
225225

226-
### 4.1 `acp constraints`
226+
### 4.1 `acp check`
227227

228228
Check constraints before editing a file.
229229

230230
**Syntax:**
231231
```bash
232-
acp constraints <path>
232+
acp check <path>
233233
```
234234

235235
**Output (RFC-001 format):**
@@ -697,7 +697,7 @@ Add to `.claude/CLAUDE.md`:
697697
## ACP Integration
698698

699699
This project uses ACP. Before modifying any file:
700-
1. Run `acp constraints <path>`
700+
1. Run `acp check <path>`
701701
2. Follow the directive in any `@acp:*` annotations
702702
3. Respect lock levels (frozen = never modify)
703703
```
@@ -709,7 +709,7 @@ Add to `.cursorrules`:
709709
```
710710
# ACP Protocol
711711
This codebase uses @acp:* annotations as directives.
712-
Before editing, check: acp constraints <path>
712+
Before editing, check: acp check <path>
713713
Follow directives after " - " in annotations.
714714
Lock levels: frozen (never), restricted (approval), normal (ok)
715715
```

0 commit comments

Comments
 (0)