devlyn-cli 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +7 -0
- package/README.md +3 -1
- package/config/commands/devlyn.team-design-ui.md +682 -0
- package/config/commands/devlyn.update-docs.md +463 -0
- package/package.json +2 -2
- package/config/commands/devlyn.team-ui.md +0 -563
package/CLAUDE.md
CHANGED
|
@@ -39,6 +39,13 @@ The full design-to-implementation pipeline:
|
|
|
39
39
|
|
|
40
40
|
For complex features, use the Plan agent to design the approach before implementation.
|
|
41
41
|
|
|
42
|
+
## Documentation Workflow
|
|
43
|
+
|
|
44
|
+
- **Sync docs with codebase**: Use `/devlyn.update-docs` to clean up stale content, update outdated info, and generate missing docs
|
|
45
|
+
- **Focused doc update**: Use `/devlyn.update-docs [area]` for targeted updates (e.g., "API reference", "getting-started")
|
|
46
|
+
- Preserves all forward-looking content: roadmaps, future plans, visions, open questions
|
|
47
|
+
- If no docs exist, proposes a tailored docs structure and generates initial content
|
|
48
|
+
|
|
42
49
|
## Debugging Workflow
|
|
43
50
|
|
|
44
51
|
- **Simple bugs**: Use `/devlyn.resolve` for systematic bug fixing with test-driven validation
|
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ npx devlyn-cli list
|
|
|
48
48
|
```
|
|
49
49
|
your-project/
|
|
50
50
|
├── .claude/
|
|
51
|
-
│ ├── commands/ #
|
|
51
|
+
│ ├── commands/ # 14 slash commands
|
|
52
52
|
│ ├── skills/ # 3 core skills + optional addons
|
|
53
53
|
│ ├── templates/ # Document templates
|
|
54
54
|
│ └── commit-conventions.md # Commit message standards
|
|
@@ -71,7 +71,9 @@ Slash commands are invoked directly in Claude Code conversations (e.g., `/devlyn
|
|
|
71
71
|
| `/devlyn.product-spec` | Generate or incrementally update product spec documents |
|
|
72
72
|
| `/devlyn.discover-product` | Scan a codebase to generate feature-oriented product documentation |
|
|
73
73
|
| `/devlyn.recommend-features` | Prioritize top 5 features to build next based on value and readiness |
|
|
74
|
+
| `/devlyn.team-design-ui` | Team-based design exploration — spawns creative director, product designer, visual designer, interaction designer, accessibility designer |
|
|
74
75
|
| `/devlyn.design-system` | Design system reference and guidance |
|
|
76
|
+
| `/devlyn.update-docs` | Sync all project docs with current codebase — cleans stale content, preserves roadmaps, generates missing docs |
|
|
75
77
|
| `/devlyn.handoff` | Create structured handoff docs for context window transitions |
|
|
76
78
|
|
|
77
79
|
## Skills
|