@atlashub/smartstack-cli 2.7.3 → 2.7.4

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.
Files changed (56) hide show
  1. package/.documentation/agents.html +0 -4
  2. package/.documentation/business-analyse.html +0 -4
  3. package/.documentation/cli-commands.html +0 -4
  4. package/.documentation/commands.html +0 -77
  5. package/.documentation/css/styles.css +0 -8
  6. package/.documentation/efcore.html +0 -4
  7. package/.documentation/gitflow.html +0 -4
  8. package/.documentation/hooks.html +0 -4
  9. package/.documentation/index.html +2 -28
  10. package/.documentation/init.html +8 -14
  11. package/.documentation/installation.html +0 -11
  12. package/.documentation/js/app.js +2 -16
  13. package/.documentation/ralph-loop.html +0 -4
  14. package/.documentation/test-web.html +0 -4
  15. package/README.md +0 -1
  16. package/dist/index.js +3 -7
  17. package/dist/index.js.map +1 -1
  18. package/package.json +2 -3
  19. package/templates/agents/docs-sync-checker.md +2 -2
  20. package/templates/hooks/docs-drift-check.md +4 -5
  21. package/templates/skills/_resources/context-digest-template.md +2 -2
  22. package/templates/skills/_resources/doc-context-cache.md +0 -2
  23. package/templates/skills/_resources/docs-manifest-schema.md +1 -3
  24. package/templates/skills/_resources/mcp-validate-documentation-spec.md +1 -3
  25. package/templates/skills/_shared.md +24 -25
  26. package/templates/skills/application/steps/step-04-backend.md +185 -11
  27. package/templates/skills/application/steps/step-06-migration.md +41 -2
  28. package/templates/skills/application/templates-seed.md +151 -0
  29. package/templates/skills/business-analyse/steps/step-05-handoff.md +59 -17
  30. package/templates/skills/controller/steps/step-01-analyze.md +1 -1
  31. package/templates/skills/ralph-loop/steps/step-01-task.md +21 -1
  32. package/templates/skills/ralph-loop/steps/step-02-execute.md +75 -3
  33. package/.documentation/apex.html +0 -1027
  34. package/templates/skills/apex/SKILL.md +0 -297
  35. package/templates/skills/apex/steps/step-00-init.md +0 -212
  36. package/templates/skills/apex/steps/step-01-analyze.md +0 -263
  37. package/templates/skills/apex/steps/step-02-plan.md +0 -255
  38. package/templates/skills/apex/steps/step-03-execute.md +0 -217
  39. package/templates/skills/apex/steps/step-04-validate.md +0 -273
  40. package/templates/skills/apex/steps/step-04b-doc-sync.md +0 -162
  41. package/templates/skills/apex/steps/step-05-examine.md +0 -214
  42. package/templates/skills/apex/steps/step-06-resolve.md +0 -181
  43. package/templates/skills/apex/steps/step-07-tests.md +0 -206
  44. package/templates/skills/apex/steps/step-08-run-tests.md +0 -207
  45. package/templates/skills/apex/templates/00-context.md +0 -46
  46. package/templates/skills/apex/templates/01-analyze.md +0 -63
  47. package/templates/skills/apex/templates/02-plan.md +0 -63
  48. package/templates/skills/apex/templates/03-execute.md +0 -34
  49. package/templates/skills/apex/templates/04-validate.md +0 -61
  50. package/templates/skills/apex/templates/04b-doc-sync.md +0 -31
  51. package/templates/skills/apex/templates/05-examine.md +0 -58
  52. package/templates/skills/apex/templates/06-resolve.md +0 -39
  53. package/templates/skills/apex/templates/07-tests.md +0 -56
  54. package/templates/skills/apex/templates/08-run-tests.md +0 -41
  55. package/templates/skills/apex/templates/README.md +0 -69
  56. package/templates/skills/apex/templates/context-digest.md +0 -35
@@ -1,69 +0,0 @@
1
- # APEX Template System
2
-
3
- ## Overview
4
-
5
- This directory contains template files used to initialize APEX workflow outputs when save mode (`-s`) is enabled.
6
-
7
- ## Template Files
8
-
9
- | Template | Purpose | Created When |
10
- |----------|---------|--------------|
11
- | `00-context.md` | Workflow configuration and progress tracking | Always (if save_mode) |
12
- | `01-analyze.md` | Analysis findings | Always (if save_mode) |
13
- | `02-plan.md` | Implementation plan | Always (if save_mode) |
14
- | `03-execute.md` | Implementation log | Always (if save_mode) |
15
- | `04-validate.md` | Validation results | Always (if save_mode) |
16
- | `05-examine.md` | Adversarial review findings | Only if examine_mode |
17
- | `06-resolve.md` | Finding resolution log | Only if examine_mode |
18
- | `07-tests.md` | Test analysis and creation | Only if test_mode |
19
- | `08-run-tests.md` | Test runner log | Only if test_mode |
20
-
21
- ## Template Variables
22
-
23
- Templates use `{{variable}}` syntax for placeholders:
24
-
25
- | Variable | Description | Example |
26
- |----------|-------------|---------|
27
- | `{{task_id}}` | Kebab-case task identifier | `01-add-auth-middleware` |
28
- | `{{task_description}}` | Plain text task description | `add authentication middleware` |
29
- | `{{timestamp}}` | ISO 8601 timestamp | `2026-01-22T10:30:00Z` |
30
- | `{{auto_mode}}` | Auto mode flag | `true` or `false` |
31
- | `{{examine_mode}}` | Examine mode flag | `true` or `false` |
32
- | `{{save_mode}}` | Save mode flag | `true` or `false` |
33
- | `{{test_mode}}` | Test mode flag | `true` or `false` |
34
- | `{{economy_mode}}` | Economy mode flag | `true` or `false` |
35
- | `{{original_input}}` | Raw user input | `/apex -a -s add auth` |
36
- | `{{examine_status}}` | Progress status for examine steps | `Pending` or `Skip` |
37
- | `{{test_status}}` | Progress status for test steps | `Pending` or `Skip` |
38
-
39
- ## How It Works
40
-
41
- 1. **Initialization (step-00-init):**
42
- - Creates output directory `.claude/output/apex/{task-id}/`
43
- - Copies templates with variables replaced
44
- - All files ready for appending
45
-
46
- 2. **Each Step:**
47
- - Reads from pre-created file if resuming
48
- - Appends findings/outputs to step file
49
- - Updates 00-context.md progress table
50
-
51
- 3. **Benefits:**
52
- - Consistent formatting across all workflows
53
- - Easy to update templates
54
- - Supports resume from any step
55
-
56
- ## Output Structure
57
-
58
- ```
59
- .claude/output/apex/{task-id}/
60
- ├── 00-context.md # Configuration + progress
61
- ├── 01-analyze.md # Analysis findings
62
- ├── 02-plan.md # Implementation plan
63
- ├── 03-execute.md # Execution log
64
- ├── 04-validate.md # Validation results
65
- ├── 05-examine.md # Review findings (if -x)
66
- ├── 06-resolve.md # Resolution log (if -x)
67
- ├── 07-tests.md # Test creation (if -t)
68
- └── 08-run-tests.md # Test runner (if -t)
69
- ```
@@ -1,35 +0,0 @@
1
- # Context Digest Template
2
-
3
- > This template defines the format for context digests generated between APEX steps.
4
- > Each step produces a digest (max 50 lines) that replaces reading full output files.
5
-
6
- ## Digest Format
7
-
8
- ```markdown
9
- # Digest: step-{NN}
10
-
11
- ## Changes ({count} files)
12
- - `path/file.ts` - {brief description of what changed}
13
- - `path/other.ts` - {brief description}
14
-
15
- ## Decisions
16
- - {key architectural or implementation decision}
17
-
18
- ## Findings
19
- - {issue or pattern identified}
20
-
21
- ## State Updates
22
- - {variable}: {new_value}
23
-
24
- ## For Next Step
25
- - {what the next step needs to know}
26
- - {specific files to read if needed}
27
- ```
28
-
29
- ## Rules
30
-
31
- - **Max 50 lines** total
32
- - **Paths only** for files (no content)
33
- - **1 line per item** (no multi-line descriptions)
34
- - **Skip empty sections** (if no decisions, omit Decisions)
35
- - **Resume mode exception**: When resuming (`-r`), read full output files instead of digest