ace-docs 0.31.0

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 (91) hide show
  1. checksums.yaml +7 -0
  2. data/.ace-defaults/docs/config.yml +169 -0
  3. data/.ace-defaults/docs/multi-subject-example.md +130 -0
  4. data/.ace-defaults/docs/single-subject-example.md +150 -0
  5. data/.ace-defaults/nav/protocols/guide-sources/ace-docs.yml +10 -0
  6. data/.ace-defaults/nav/protocols/prompt-sources/ace-docs.yml +34 -0
  7. data/.ace-defaults/nav/protocols/tmpl-sources/ace-docs.yml +10 -0
  8. data/.ace-defaults/nav/protocols/wfi-sources/ace-docs.yml +19 -0
  9. data/CHANGELOG.md +1082 -0
  10. data/LICENSE +21 -0
  11. data/README.md +40 -0
  12. data/Rakefile +14 -0
  13. data/exe/ace-docs +14 -0
  14. data/handbook/guides/documentation/ruby.md +16 -0
  15. data/handbook/guides/documentation/rust.md +35 -0
  16. data/handbook/guides/documentation/typescript.md +18 -0
  17. data/handbook/guides/documentation.g.md +437 -0
  18. data/handbook/guides/documents-embedded-sync.g.md +473 -0
  19. data/handbook/guides/documents-embedding.g.md +276 -0
  20. data/handbook/guides/markdown-style.g.md +290 -0
  21. data/handbook/prompts/ace-change-analyzer.system.md +113 -0
  22. data/handbook/prompts/ace-change-analyzer.user.md +95 -0
  23. data/handbook/prompts/document-analysis.md +74 -0
  24. data/handbook/prompts/document-analysis.system.md +129 -0
  25. data/handbook/prompts/markdown-style.system.md +113 -0
  26. data/handbook/skills/as-docs-create-adr/SKILL.md +35 -0
  27. data/handbook/skills/as-docs-create-api/SKILL.md +35 -0
  28. data/handbook/skills/as-docs-create-user/SKILL.md +35 -0
  29. data/handbook/skills/as-docs-maintain-adrs/SKILL.md +35 -0
  30. data/handbook/skills/as-docs-squash-changelog/SKILL.md +42 -0
  31. data/handbook/skills/as-docs-update/SKILL.md +36 -0
  32. data/handbook/skills/as-docs-update-blueprint/SKILL.md +28 -0
  33. data/handbook/skills/as-docs-update-roadmap/SKILL.md +24 -0
  34. data/handbook/skills/as-docs-update-tools/SKILL.md +36 -0
  35. data/handbook/skills/as-docs-update-usage/SKILL.md +26 -0
  36. data/handbook/templates/code-docs/javascript-jsdoc.template.md +102 -0
  37. data/handbook/templates/code-docs/ruby-yard.template.md +85 -0
  38. data/handbook/templates/project-docs/README.template.md +73 -0
  39. data/handbook/templates/project-docs/architecture.template.md +300 -0
  40. data/handbook/templates/project-docs/blueprint.template.md +165 -0
  41. data/handbook/templates/project-docs/context/ownership.yml +160 -0
  42. data/handbook/templates/project-docs/decisions/adr.template.md +60 -0
  43. data/handbook/templates/project-docs/prd.template.md +144 -0
  44. data/handbook/templates/project-docs/roadmap/roadmap.template.md +47 -0
  45. data/handbook/templates/project-docs/vision.template.md +233 -0
  46. data/handbook/templates/user-docs/user-guide.template.md +107 -0
  47. data/handbook/workflow-instructions/docs/create-adr.wf.md +334 -0
  48. data/handbook/workflow-instructions/docs/create-api.wf.md +448 -0
  49. data/handbook/workflow-instructions/docs/create-cookbook.wf.md +434 -0
  50. data/handbook/workflow-instructions/docs/create-user.wf.md +399 -0
  51. data/handbook/workflow-instructions/docs/maintain-adrs.wf.md +589 -0
  52. data/handbook/workflow-instructions/docs/squash-changelog.wf.md +246 -0
  53. data/handbook/workflow-instructions/docs/update-blueprint.wf.md +361 -0
  54. data/handbook/workflow-instructions/docs/update-context.wf.md +336 -0
  55. data/handbook/workflow-instructions/docs/update-roadmap.wf.md +421 -0
  56. data/handbook/workflow-instructions/docs/update-tools.wf.md +307 -0
  57. data/handbook/workflow-instructions/docs/update-usage.wf.md +710 -0
  58. data/handbook/workflow-instructions/docs/update.wf.md +418 -0
  59. data/lib/ace/docs/atoms/diff_filterer.rb +131 -0
  60. data/lib/ace/docs/atoms/frontmatter_free_matcher.rb +20 -0
  61. data/lib/ace/docs/atoms/git_date_resolver.rb +16 -0
  62. data/lib/ace/docs/atoms/readme_metadata_inferrer.rb +60 -0
  63. data/lib/ace/docs/atoms/terminology_extractor.rb +308 -0
  64. data/lib/ace/docs/atoms/time_range_calculator.rb +96 -0
  65. data/lib/ace/docs/atoms/timestamp_parser.rb +106 -0
  66. data/lib/ace/docs/atoms/type_inferrer.rb +70 -0
  67. data/lib/ace/docs/cli/commands/analyze.rb +351 -0
  68. data/lib/ace/docs/cli/commands/analyze_consistency.rb +185 -0
  69. data/lib/ace/docs/cli/commands/discover.rb +75 -0
  70. data/lib/ace/docs/cli/commands/scope_options.rb +71 -0
  71. data/lib/ace/docs/cli/commands/status.rb +241 -0
  72. data/lib/ace/docs/cli/commands/update.rb +198 -0
  73. data/lib/ace/docs/cli/commands/validate.rb +225 -0
  74. data/lib/ace/docs/cli.rb +60 -0
  75. data/lib/ace/docs/models/analysis_report.rb +120 -0
  76. data/lib/ace/docs/models/consistency_report.rb +259 -0
  77. data/lib/ace/docs/models/document.rb +354 -0
  78. data/lib/ace/docs/molecules/change_detector.rb +389 -0
  79. data/lib/ace/docs/molecules/document_loader.rb +133 -0
  80. data/lib/ace/docs/molecules/frontmatter_manager.rb +85 -0
  81. data/lib/ace/docs/molecules/git_date_resolver.rb +30 -0
  82. data/lib/ace/docs/organisms/cross_document_analyzer.rb +274 -0
  83. data/lib/ace/docs/organisms/document_registry.rb +318 -0
  84. data/lib/ace/docs/organisms/validator.rb +164 -0
  85. data/lib/ace/docs/prompts/compact_diff_prompt.rb +119 -0
  86. data/lib/ace/docs/prompts/consistency_prompt.rb +286 -0
  87. data/lib/ace/docs/prompts/document_analysis_prompt.rb +389 -0
  88. data/lib/ace/docs/version.rb +7 -0
  89. data/lib/ace/docs.rb +82 -0
  90. data/lib/test.rb +4 -0
  91. metadata +347 -0
@@ -0,0 +1,165 @@
1
+ ---
2
+ doc-type: template
3
+ title: "Project Blueprint: [Project Name]"
4
+ purpose: Documentation for ace-docs/handbook/templates/project-docs/blueprint.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-10
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # Project Blueprint: [Project Name]
11
+
12
+ ## What is a Blueprint?
13
+
14
+ This document provides a concise overview of the project's structure and organization, highlighting key directories and files to help developers (especially AI assistants) quickly understand how to navigate the codebase. It should be updated periodically using the `update-blueprint` workflow.
15
+
16
+ ## Core Project Documents
17
+
18
+ - [What We Build](docs/vision.md) - Project vision and goals
19
+ - [Architecture](docs/architecture.md) - System design and implementation principles
20
+ - [Blueprint](docs/blueprint.md) - Project structure and organization
21
+
22
+ ## Project Organization
23
+
24
+ <!-- Describe your project's main directory structure -->
25
+
26
+ This project follows a documentation-first approach with these primary directories:
27
+
28
+ - **handbook/** - Package-specific development resources and workflows
29
+ - **guides/** - Best practices and standards for development
30
+ - **tools/** - Utility scripts to support development workflows
31
+ - **workflow-instructions/** - Structured commands for AI agents
32
+ - **zed/** - Editor integration (if applicable)
33
+
34
+ - **dev-taskflow/** - Project-specific documentation
35
+ - **current/** - Active release cycle work
36
+ - **backlog/** - Pending tasks for future releases
37
+ - **done/** - Completed releases and tasks
38
+ - **decisions/** - Architecture Decision Records (ADRs)
39
+
40
+ - **bin/** - Executable scripts for project management and automation
41
+
42
+ - **src/** - Source code (adjust directory names as needed)
43
+ - **[component1]/** - Core functionality
44
+ - **[component2]/** - Additional features
45
+ - **utils/** - Shared utilities
46
+
47
+ - **tests/** - Test files and test utilities
48
+
49
+ - **config/** - Configuration files
50
+
51
+ <!-- Add your project-specific directories here -->
52
+
53
+ ## View Complete Directory Structure
54
+
55
+ To see the complete filtered directory structure, run:
56
+
57
+ ```bash
58
+ task-manager recentee
59
+ ```
60
+
61
+ This will show all project files while filtering out temporary files, session logs, and other non-essential directories.
62
+
63
+ ## Key Project-Specific Files
64
+
65
+ <!-- List important files that developers should know about -->
66
+
67
+ - [Workflow Instructions](wfi://README) - Entry point for understanding available AI workflows
68
+ - [Project Guides](guide://README) - Development standards and best practices
69
+ - [Configuration](README.md) - Configuration documentation (if applicable)
70
+
71
+ ## Technology Stack
72
+
73
+ <!-- Summarize the main technologies used -->
74
+
75
+ - **Primary Language**: [e.g., JavaScript, Python, Rust]
76
+ - **Framework**: [e.g., React, Django, Axum]
77
+ - **Database**: [e.g., PostgreSQL, MongoDB, SQLite]
78
+ - **Key Libraries**: [List important dependencies]
79
+ - **Development Tools**: [e.g., Docker, Webpack, Cargo]
80
+
81
+ ## Read-Only Paths
82
+
83
+ This section lists files and directories that the agent should treat as read-only. Attempts to modify these paths should be flagged or prevented.
84
+
85
+ <!-- Add project-specific read-only paths -->
86
+ - `docs/decisions/**/*`
87
+ - `dev-taskflow/done/**/*`
88
+ - `*.lock` # Dependency lock files
89
+ - `dist/**/*` # Built artifacts
90
+ - `build/**/*` # Build output
91
+
92
+ ## Ignored Paths
93
+
94
+ This section lists files, directories, or glob patterns that the agent should ignore entirely during its operations (e.g., when searching, reading, or editing files).
95
+
96
+ - `dev-taskflow/done/**/*` # Default: Protects completed tasks and releases
97
+ - `**/node_modules/**`
98
+ - `**/.git/**`
99
+ - `**/__pycache__/**`
100
+ - `**/target/**` # Rust build artifacts
101
+ - `**/dist/**` # Built distributions
102
+ - `**/build/**` # Build artifacts
103
+ - `**/.env` # Environment files
104
+ - `**/.env.*` # Environment variants
105
+ - `*.session.log`
106
+ - `*.lock`
107
+ - `*.tmp`
108
+ - `*~` # Backup files
109
+ - `**/.DS_Store` # macOS system files
110
+ - `**/Thumbs.db` # Windows system files
111
+
112
+ ## Entry Points
113
+
114
+ <!-- Document the main ways to start or interact with the project -->
115
+
116
+ ### Development
117
+
118
+ ```bash
119
+ # Start development server
120
+ bin/run
121
+
122
+ # Run tests
123
+ # Run project-specific test command
124
+
125
+ # Build for production
126
+ bin/build
127
+ ```
128
+
129
+ ### Common Workflows
130
+
131
+ - **New Feature**: Use `task-manager next` to find next task, follow task workflow
132
+ - **Bug Fix**: Create task in backlog, prioritize, implement
133
+ - **Documentation**: Update relevant files in `dev-taskflow/`
134
+
135
+ ## Dependencies
136
+
137
+ <!-- List major external dependencies and their purposes -->
138
+
139
+ ### Runtime Dependencies
140
+
141
+ - [Library 1]: Purpose and version constraints
142
+ - [Library 2]: Purpose and version constraints
143
+
144
+ ### Development Dependencies
145
+
146
+ ## Submodules
147
+
148
+ <!-- Document any Git submodules used -->
149
+
150
+ ### docs-dev (if applicable)
151
+
152
+ - Path: `docs-dev`
153
+ - Repository: [Repository URL]
154
+ - Purpose: Development workflows and guides
155
+ - **Important**: Commits for this submodule must be made from within the submodule directory
156
+
157
+ ### [Other Submodules]
158
+
159
+ - Path: `[path]`
160
+ - Repository: [Repository URL]
161
+ - Purpose: [Description]
162
+
163
+ ---
164
+
165
+ *This blueprint should be updated when significant structural changes are made to the project. Use the `update-blueprint` workflow to keep it current.*
@@ -0,0 +1,160 @@
1
+ # Document Ownership & Responsibility Model
2
+ # This file defines what content belongs in each documentation file
3
+ # Used by context tool and update-context-docs workflow for validation
4
+
5
+ version: 1.0
6
+ description: |
7
+ Defines ownership boundaries for project documentation.
8
+ Each topic should appear in exactly ONE document.
9
+ Other documents should reference, not duplicate.
10
+
11
+ # Topic definitions - what each topic category means
12
+ topics:
13
+ # Vision & Business Topics
14
+ project_vision:
15
+ description: "Mission, goals, what we're building and why"
16
+ keywords: [vision, mission, goal, objective, purpose]
17
+
18
+ user_personas:
19
+ description: "Target users, their needs, pain points, jobs to be done"
20
+ keywords: [persona, user, customer, audience, needs]
21
+
22
+ business_value:
23
+ description: "Value proposition, ROI, problems solved, market opportunity"
24
+ keywords: [value, proposition, advantage, benefit, problem]
25
+
26
+ feature_list_user_facing:
27
+ description: "High-level features from user perspective (what, not how)"
28
+ keywords: [feature, capability, functionality, offering]
29
+
30
+ # Technical Topics
31
+ technology_stack:
32
+ description: "Languages, frameworks, libraries, tools, and versions"
33
+ keywords: [framework, library, language, tool, version, dependency]
34
+
35
+ system_design:
36
+ description: "Architecture patterns, component design, data flow, integrations"
37
+ keywords: [architecture, pattern, design, component, integration]
38
+
39
+ development_patterns:
40
+ description: "Code conventions, best practices, principles, guidelines"
41
+ keywords: [convention, practice, principle, guideline, standard]
42
+
43
+ technical_dependencies:
44
+ description: "Package dependencies, external services, version requirements"
45
+ keywords: [dependency, package, requirement, service]
46
+
47
+ # Structure Topics
48
+ directory_structure:
49
+ description: "Folder organization, project layout, file tree"
50
+ keywords: [folder, directory, structure, tree, organization]
51
+
52
+ file_organization:
53
+ description: "Where specific types of files live, naming conventions"
54
+ keywords: [file, location, path, organization]
55
+
56
+ entry_points:
57
+ description: "Main files, how to start/build/deploy, quick commands"
58
+ keywords: [entry, start, build, deploy, command]
59
+
60
+ # Design Topics
61
+ visual_design:
62
+ description: "Color palette, typography, spacing, layout principles"
63
+ keywords: [color, typography, spacing, layout, design]
64
+
65
+ component_styles:
66
+ description: "UI component appearance, CSS classes, styling rules"
67
+ keywords: [style, css, class, component, appearance]
68
+
69
+ brand_guidelines:
70
+ description: "Logo usage, tone of voice, visual identity, brand rules"
71
+ keywords: [brand, logo, identity, tone, guideline]
72
+
73
+ # Tool Topics
74
+ tool_documentation:
75
+ description: "How to use development tools, CLI commands, utilities"
76
+ keywords: [tool, command, cli, utility, usage]
77
+
78
+ command_reference:
79
+ description: "Command syntax, flags, options, parameters"
80
+ keywords: [command, flag, option, parameter, syntax]
81
+
82
+ usage_examples:
83
+ description: "Sample workflows, common patterns, recipes"
84
+ keywords: [example, workflow, pattern, recipe, sample]
85
+
86
+ # Document ownership - what each file owns and must not contain
87
+ documents:
88
+ docs/vision.md:
89
+ owns:
90
+ - project_vision
91
+ - user_personas
92
+ - business_value
93
+ - feature_list_user_facing
94
+ must_not_contain:
95
+ - technology_stack
96
+ - system_design
97
+ - directory_structure
98
+ - technical_dependencies
99
+ - command_reference
100
+ cross_references:
101
+ - "For technical details → architecture.md"
102
+ - "For project structure → blueprint.md"
103
+
104
+ docs/architecture.md:
105
+ owns:
106
+ - technology_stack
107
+ - system_design
108
+ - development_patterns
109
+ - technical_dependencies
110
+ must_not_contain:
111
+ - project_vision
112
+ - user_personas
113
+ - directory_structure
114
+ - command_reference
115
+ - brand_guidelines
116
+ cross_references:
117
+ - "For project goals → vision.md"
118
+ - "For file structure → blueprint.md"
119
+ - "For commands → tools.md"
120
+
121
+ docs/blueprint.md:
122
+ owns:
123
+ - directory_structure
124
+ - file_organization
125
+ - entry_points
126
+ must_not_contain:
127
+ - technology_stack # (rationale belongs in architecture)
128
+ - system_design
129
+ - project_vision
130
+ - development_patterns
131
+ - tool_documentation # (details belong in tools.md)
132
+ cross_references:
133
+ - "For technology choices → architecture.md"
134
+ - "For tool details → tools.md"
135
+
136
+ docs/tools.md:
137
+ owns:
138
+ - tool_documentation
139
+ - command_reference
140
+ - usage_examples
141
+ must_not_contain:
142
+ - project_vision
143
+ - system_design
144
+ - visual_design
145
+ cross_references:
146
+ - "For architecture → architecture.md"
147
+ - "For project info → vision.md"
148
+
149
+ docs/styles.md:
150
+ owns:
151
+ - visual_design
152
+ - component_styles
153
+ - brand_guidelines
154
+ must_not_contain:
155
+ - technology_stack
156
+ - system_design
157
+ - project_vision
158
+ - directory_structure
159
+ cross_references:
160
+ - "For technical implementation → architecture.md"
@@ -0,0 +1,60 @@
1
+ ---
2
+ doc-type: template
3
+ title: "ADR-XXX: Title of the Decision"
4
+ purpose: Documentation for ace-docs/handbook/templates/project-docs/decisions/adr.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-08
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # ADR-XXX: Title of the Decision
11
+
12
+ ## Status
13
+
14
+ [Proposed | Accepted | Deprecated | Superseded]
15
+ Date: YYYY-MM-DD
16
+
17
+ ## Context
18
+
19
+ What is the issue that we're seeing that is motivating this decision or change?
20
+
21
+ ## Decision
22
+
23
+ What is the change that we're proposing and/or doing?
24
+
25
+ ## Consequences
26
+
27
+ What becomes easier or more difficult to do because of this change?
28
+
29
+ ### Positive
30
+
31
+ - Benefit 1
32
+ - Benefit 2
33
+
34
+ ### Negative
35
+
36
+ - Challenge 1
37
+ - Challenge 2
38
+
39
+ ### Neutral
40
+
41
+ - Impact 1
42
+ - Impact 2
43
+
44
+ ## Alternatives Considered
45
+
46
+ - Alternative 1
47
+ - Why it wasn't chosen
48
+ - Alternative 2
49
+ - Why it wasn't chosen
50
+
51
+ ## Related Decisions
52
+
53
+ - Link to related ADRs
54
+ - Link to related documentation
55
+
56
+ ## References
57
+
58
+ - External references
59
+ - Research papers
60
+ - Blog posts
@@ -0,0 +1,144 @@
1
+ ---
2
+ doc-type: template
3
+ title: Product Requirements Document (PRD) Template
4
+ purpose: Documentation for ace-docs/handbook/templates/project-docs/prd.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-08
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # Product Requirements Document (PRD) Template
11
+
12
+ ## Project Overview
13
+
14
+ ### Problem Statement
15
+ <!-- Describe the core problem this project aims to solve -->
16
+
17
+ ### Proposed Solution
18
+ <!-- High-level description of your approach to solving the problem -->
19
+
20
+ ### Success Metrics
21
+ <!-- How will you measure success? Include quantifiable goals where possible -->
22
+
23
+ ## Project Details
24
+
25
+ ### Project Name
26
+ <!-- The official name of your project -->
27
+
28
+ ### Target Audience
29
+ <!-- Who are the primary users/beneficiaries of this project? -->
30
+
31
+ ### Core Value Proposition
32
+ <!-- What unique value does this project provide? -->
33
+
34
+ ## Functional Requirements
35
+
36
+ ### Must-Have Features (P0)
37
+ <!-- Critical features without which the project cannot succeed -->
38
+ - [ ] Feature 1: Description
39
+ - [ ] Feature 2: Description
40
+
41
+ ### Should-Have Features (P1)
42
+ <!-- Important features that significantly enhance the project -->
43
+ - [ ] Feature 1: Description
44
+ - [ ] Feature 2: Description
45
+
46
+ ### Could-Have Features (P2)
47
+ <!-- Nice-to-have features for future consideration -->
48
+ - [ ] Feature 1: Description
49
+ - [ ] Feature 2: Description
50
+
51
+ ## Technical Considerations
52
+
53
+ ### Technology Stack
54
+ <!-- Preferred programming languages, frameworks, databases, etc. -->
55
+ - **Primary Language**:
56
+ - **Framework/Runtime**:
57
+ - **Database**:
58
+ - **Key Libraries**:
59
+ - **Deployment**:
60
+
61
+ ### Architecture Requirements
62
+ <!-- High-level architectural constraints or preferences -->
63
+
64
+ ### Performance Requirements
65
+ <!-- Speed, scalability, and resource constraints -->
66
+
67
+ ### Security Requirements
68
+ <!-- Security considerations and compliance needs -->
69
+
70
+ ### Integration Requirements
71
+ <!-- External systems or APIs this project needs to work with -->
72
+
73
+ ## User Stories
74
+
75
+ ### Primary User Flows
76
+ <!-- Describe the main user journeys through your application -->
77
+
78
+ #### User Story 1
79
+
80
+ **As a** [type of user]
81
+ **I want** [goal/desire]
82
+ **So that** [benefit/value]
83
+
84
+ **Acceptance Criteria:**
85
+
86
+ - [ ] Criterion 1
87
+ - [ ] Criterion 2
88
+
89
+ #### User Story 2
90
+
91
+ **As a** [type of user]
92
+ **I want** [goal/desire]
93
+ **So that** [benefit/value]
94
+
95
+ **Acceptance Criteria:**
96
+
97
+ - [ ] Criterion 1
98
+ - [ ] Criterion 2
99
+
100
+ ## Implementation Timeline
101
+
102
+ ### Phase 1: Foundation (Estimated: X weeks)
103
+ <!-- Core functionality and basic features -->
104
+
105
+ ### Phase 2: Enhancement (Estimated: X weeks)
106
+ <!-- Additional features and improvements -->
107
+
108
+ ### Phase 3: Polish (Estimated: X weeks)
109
+ <!-- Testing, optimization, documentation -->
110
+
111
+ ## Dependencies and Risks
112
+
113
+ ### External Dependencies
114
+ <!-- Third-party services, libraries, or resources you depend on -->
115
+
116
+ ### Risk Assessment
117
+ <!-- Potential challenges and mitigation strategies -->
118
+ | Risk | Impact | Probability | Mitigation Strategy |
119
+ |------|--------|-------------|-------------------|
120
+ | Risk 1 | High/Medium/Low | High/Medium/Low | Strategy description |
121
+
122
+ ## Out of Scope
123
+
124
+ ### Explicitly Excluded Features
125
+ <!-- Features that might be expected but are intentionally not included -->
126
+
127
+ ### Future Considerations
128
+ <!-- Features or improvements for potential future phases -->
129
+
130
+ ## Approval and Sign-off
131
+
132
+ ### Stakeholders
133
+ <!-- List key stakeholders who need to approve this PRD -->
134
+
135
+ ### Approval Status
136
+
137
+ - [ ] Technical Lead Approval
138
+ - [ ] Product Owner Approval
139
+ - [ ] Architecture Review Complete
140
+ - [ ] Ready for Implementation
141
+
142
+ ---
143
+
144
+ *This PRD should be reviewed and updated as the project evolves. Version control and change tracking should be maintained for all modifications.*
@@ -0,0 +1,47 @@
1
+ ---
2
+ doc-type: template
3
+ title: Project Roadmap
4
+ purpose: Documentation for ace-docs/handbook/templates/project-docs/roadmap/roadmap.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-08
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # Project Roadmap
11
+
12
+ ## 1. Project Vision
13
+
14
+ [Inspirational statement describing the long-term mission and value the project brings to users. Keep concise (1-3 sentences) and focused on outcomes rather than technical details.]
15
+
16
+ ## 2. Strategic Objectives
17
+
18
+ | # | Objective | Success Metric |
19
+ |---|-----------|----------------|
20
+ | 1 | [Outcome-focused objective] | [Measurable criteria] |
21
+ | 2 | [Outcome-focused objective] | [Measurable criteria] |
22
+
23
+ ## 3. Key Themes & Epics
24
+
25
+ | Theme | Description | Linked Epics |
26
+ |-------|-------------|-------------|
27
+ | [Theme Name] | [Brief description of theme purpose] | [Epic identifiers] |
28
+ | [Theme Name] | [Brief description of theme purpose] | [Epic identifiers] |
29
+
30
+ ## 4. Planned Major Releases
31
+
32
+ | Version | Codename | Target Window | Goals | Key Epics |
33
+ |---------|----------|---------------|-------|-----------|
34
+ | v.X.Y.Z | "[Name]" | QX YYYY | [Primary goals] | [Related epics] |
35
+ | v.X.Y.Z | "[Name]" | QX YYYY | [Primary goals] | [Related epics] |
36
+
37
+ ## 5. Cross-Release Dependencies
38
+
39
+ - [Dependency description linking specific epics/releases]
40
+ - [Dependency description linking specific epics/releases]
41
+
42
+ ## 6. Update History
43
+
44
+ | Date | Summary | Author |
45
+ |------|---------|--------|
46
+ | YYYY-MM-DD | [Brief change description] | [Author name] |
47
+ | YYYY-MM-DD | Initial roadmap creation | [Author name] |