2026-01-29 18:39:10 +00:00
|
|
|
# CLI Documentation Status
|
2026-01-29 16:03:06 +00:00
|
|
|
|
2026-01-29 18:39:10 +00:00
|
|
|
Documentation coverage for core CLI commands.
|
refactor(cli): restructure cmd packages into subdirectories
- Move CLI commands into subdirectories matching command hierarchy:
dev/, go/, php/, build/, ci/, sdk/, pkg/, vm/, docs/, setup/, doctor/, test/, ai/
- Create shared/ package for common styles and utilities
- Add new `core ai` root command with claude subcommand
- Update package declarations and imports across all files
- Create commands.go entry points for each package
- Remove GUI-related files (moved to core-gui repo)
This makes the filesystem structure match the CLI command structure,
improving context capture and code organization.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 18:02:43 +00:00
|
|
|
|
2026-01-29 18:34:49 +00:00
|
|
|
## Summary
|
|
|
|
|
|
2026-01-29 18:39:10 +00:00
|
|
|
| Package | Coverage | Status |
|
|
|
|
|
|---------|----------|--------|
|
|
|
|
|
| ai | 100% | ✓ Complete |
|
|
|
|
|
| build | 50% | Partial |
|
|
|
|
|
| ci | 100% | ✓ Complete |
|
|
|
|
|
| dev | 100% | ✓ Complete |
|
|
|
|
|
| docs | 100% | ✓ Complete |
|
|
|
|
|
| doctor | 100% | ✓ Complete |
|
|
|
|
|
| go | 100% | ✓ Complete |
|
|
|
|
|
| php | 100% | ✓ Complete |
|
|
|
|
|
| pkg | 100% | ✓ Complete |
|
|
|
|
|
| sdk | 100% | ✓ Complete |
|
|
|
|
|
| setup | 100% | ✓ Complete |
|
|
|
|
|
| test | 100% | ✓ Complete |
|
|
|
|
|
| vm | 100% | ✓ Complete |
|
|
|
|
|
|
|
|
|
|
## Remaining Gaps
|
refactor(cli): restructure cmd packages into subdirectories
- Move CLI commands into subdirectories matching command hierarchy:
dev/, go/, php/, build/, ci/, sdk/, pkg/, vm/, docs/, setup/, doctor/, test/, ai/
- Create shared/ package for common styles and utilities
- Add new `core ai` root command with claude subcommand
- Update package declarations and imports across all files
- Create commands.go entry points for each package
- Remove GUI-related files (moved to core-gui repo)
This makes the filesystem structure match the CLI command structure,
improving context capture and code organization.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 18:02:43 +00:00
|
|
|
|
2026-01-29 18:34:49 +00:00
|
|
|
### build
|
|
|
|
|
|
|
|
|
|
| Command | Status |
|
|
|
|
|
|---------|--------|
|
2026-01-29 18:39:10 +00:00
|
|
|
| build from-path | Missing (legacy command) |
|
|
|
|
|
| build pwa | Missing (legacy command) |
|
2026-01-29 18:34:49 +00:00
|
|
|
|
2026-01-29 18:39:10 +00:00
|
|
|
These are legacy commands for PWA/GUI builds that may be deprecated.
|
2026-01-29 18:34:49 +00:00
|
|
|
|
|
|
|
|
## Documentation Structure
|
|
|
|
|
|
|
|
|
|
All documented packages follow this structure:
|
|
|
|
|
```
|
|
|
|
|
/docs/cmd/{package}/
|
2026-01-29 18:39:10 +00:00
|
|
|
├── index.md (main command + all subcommands)
|
2026-01-29 18:34:49 +00:00
|
|
|
├── example.md (optional usage examples)
|
|
|
|
|
└── {subcommand}/
|
2026-01-29 18:39:10 +00:00
|
|
|
└── index.md (detailed subcommand docs, if needed)
|
2026-01-29 18:34:49 +00:00
|
|
|
```
|
|
|
|
|
|
2026-01-29 18:39:10 +00:00
|
|
|
Most packages document all commands in their index.md file with anchor links.
|
2026-01-29 18:34:49 +00:00
|
|
|
|
2026-01-29 18:39:10 +00:00
|
|
|
## Recent Updates
|
2026-01-29 18:34:49 +00:00
|
|
|
|
2026-01-29 19:10:15 +00:00
|
|
|
- 2026-01-29: Setup wizard implemented with three modes (registry, bootstrap, repo setup)
|
|
|
|
|
- 2026-01-29: CI flag renamed to --we-are-go-for-launch
|
|
|
|
|
- 2026-01-29: AI command examples fixed (core dev -> core ai)
|
2026-01-29 18:39:10 +00:00
|
|
|
- 2026-01-29: Added ai package documentation
|
|
|
|
|
- 2026-01-29: Updated php, pkg, vm documentation with full command coverage
|
|
|
|
|
- 2026-01-29: Task commands moved from dev to ai
|
2026-01-29 16:03:06 +00:00
|
|
|
|
2026-01-29 16:27:39 +00:00
|
|
|
Last verified: 2026-01-29
|