@@ -146,7 +146,7 @@ DevTrail uses independent version tags for each component:
146146
147147| Component | Tag prefix | Example | Includes |
148148| -----------| -----------| ---------| ----------|
149- | Framework | ` fw- ` | ` fw-4.0.0 ` | Templates (12 types), governance, directives, scripts |
149+ | Framework | ` fw- ` | ` fw-4.0.0 ` | Templates (12 types), governance, directives |
150150| CLI | ` cli- ` | ` cli-2.1.0 ` | The ` devtrail ` binary |
151151
152152Check installed versions with ` devtrail status ` or ` devtrail about ` .
@@ -184,7 +184,7 @@ unzip devtrail-fw-*.zip -d your-project/
184184cd your-project
185185
186186# Commit
187- git add .devtrail/ DEVTRAIL.md scripts/
187+ git add .devtrail/ DEVTRAIL.md
188188git commit -m " chore: adopt DevTrail"
189189```
190190
@@ -319,18 +319,15 @@ concerns:
319319
320320``` bash
321321# Install the pre-commit hook
322- cp scripts/pre-commit-docs.sh .git/hooks/pre-commit
322+ echo ' devtrail validate --staged ' > .git/hooks/pre-commit
323323chmod +x .git/hooks/pre-commit
324324```
325325
326326### Manual Validation
327327
328328``` bash
329- # Linux/Mac
330- bash scripts/pre-commit-docs.sh
331-
332- # Windows PowerShell
333- .\s cripts\v alidate-docs.ps1
329+ # Cross-platform (any OS with devtrail installed)
330+ devtrail validate
334331```
335332
336333### GitHub Actions
@@ -380,22 +377,21 @@ DevTrail includes skills for AI agents that enable **active documentation creati
380377/devtrail-adr
381378```
382379
383- ### Shell Scripts (Manual Use)
380+ ### CLI Commands (Manual Use)
384381
385- For users who prefer command- line or use agents without skill support:
382+ For users who prefer the command line or use agents without skill support:
386383
387384``` bash
388385# Interactive document creation
389- ./scripts/ devtrail- new.sh
386+ devtrail new
390387
391388# Create specific type directly
392- ./scripts/ devtrail- new.sh ailog
389+ devtrail new --doc-type ailog
393390
394391# Check documentation status
395- ./scripts/ devtrail- status.sh
392+ devtrail status
396393```
397394
398-
399395### Agent Reporting
400396
401397AI agents report documentation status at the end of each task:
@@ -449,11 +445,11 @@ All skill implementations are **functionally identical**—only the format diffe
449445
450446### Operating Systems
451447
452- | OS | Validation Script |
453- | ----| ------------------- |
454- | Linux | ` scripts/pre-commit-docs.sh ` |
455- | macOS | ` scripts/pre-commit-docs.sh ` |
456- | Windows | ` scripts/ validate-docs.ps1 ` |
448+ | OS | Validation |
449+ | ----| ------------|
450+ | Linux | ` devtrail validate ` |
451+ | macOS | ` devtrail validate ` |
452+ | Windows | ` devtrail validate` |
457453
458454### CI/CD Platforms
459455
0 commit comments