trinity-method-sdk 2.0.9 → 2.1.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 (116) hide show
  1. package/CHANGELOG.md +200 -0
  2. package/README.md +33 -34
  3. package/dist/cli/commands/deploy/agents.js +1 -1
  4. package/dist/cli/commands/deploy/claude-setup.js +28 -35
  5. package/dist/cli/commands/deploy/index.js +1 -1
  6. package/dist/cli/commands/deploy/knowledge-base.js +1 -1
  7. package/dist/cli/commands/deploy/root-files.js +1 -1
  8. package/dist/cli/commands/deploy/sdk-install.js +1 -1
  9. package/dist/cli/commands/deploy/templates.js +29 -16
  10. package/dist/cli/commands/update/agents.js +1 -1
  11. package/dist/cli/commands/update/commands.d.ts +1 -0
  12. package/dist/cli/commands/update/commands.js +18 -45
  13. package/dist/cli/commands/update/knowledge-base.js +1 -1
  14. package/dist/cli/commands/update/templates.js +34 -12
  15. package/dist/cli/utils/deploy-linting.js +1 -1
  16. package/dist/cli/utils/template-processor.js +1 -1
  17. package/dist/templates/{agents → .claude/agents}/aj-team/apo-documentation-specialist.md.template +3 -3
  18. package/dist/templates/{agents → .claude/agents}/aj-team/bas-quality-gate.md.template +5 -7
  19. package/dist/templates/{agents → .claude/agents}/aj-team/bon-dependency-manager.md.template +4 -4
  20. package/dist/templates/{agents → .claude/agents}/aj-team/cap-configuration-specialist.md.template +3 -3
  21. package/dist/templates/{agents → .claude/agents}/aj-team/dra-code-reviewer.md.template +5 -7
  22. package/dist/templates/{agents → .claude/agents}/aj-team/kil-task-executor.md.template +5 -7
  23. package/dist/templates/{agents → .claude/agents}/aj-team/uro-refactoring-specialist.md.template +3 -3
  24. package/dist/templates/{agents → .claude/agents}/audit/juno-auditor.md.template +7 -2
  25. package/dist/templates/{agents → .claude/agents}/deployment/ein-cicd.md.template +3 -5
  26. package/dist/templates/{agents → .claude/agents}/deployment/ino-context.md.template +4 -1
  27. package/dist/templates/{agents → .claude/agents}/deployment/tan-structure.md.template +4 -1
  28. package/dist/templates/{agents → .claude/agents}/deployment/zen-knowledge.md.template +6 -0
  29. package/dist/templates/{agents → .claude/agents}/leadership/aj-cc.md.template +6 -1
  30. package/dist/templates/{agents → .claude/agents}/leadership/aj-maestro.md.template +4 -0
  31. package/dist/templates/{agents → .claude/agents}/leadership/aly-cto.md.template +5 -1
  32. package/dist/templates/{agents → .claude/agents}/planning/eus-decomposer.md.template +4 -0
  33. package/dist/templates/{agents → .claude/agents}/planning/mon-requirements.md.template +4 -0
  34. package/dist/templates/{agents → .claude/agents}/planning/ror-design.md.template +4 -0
  35. package/dist/templates/{agents → .claude/agents}/planning/tra-planner.md.template +6 -0
  36. package/dist/templates/{shared/claude-commands → .claude/commands/execution}/trinity-audit.md.template +6 -6
  37. package/dist/templates/{shared/claude-commands → .claude/commands/execution}/trinity-orchestrate.md.template +5 -5
  38. package/dist/templates/{shared/claude-commands → .claude/commands/infrastructure}/trinity-init.md.template +12 -11
  39. package/dist/templates/{shared/claude-commands → .claude/commands/investigation}/trinity-create-investigation.md.template +8 -2
  40. package/dist/templates/{shared/claude-commands → .claude/commands/investigation}/trinity-investigate-templates.md.template +9 -5
  41. package/dist/templates/{shared/claude-commands → .claude/commands/investigation}/trinity-plan-investigation.md.template +11 -5
  42. package/dist/templates/{shared/claude-commands → .claude/commands/maintenance}/trinity-changelog.md.template +5 -4
  43. package/dist/templates/.claude/commands/maintenance/trinity-docs-update.md.template +279 -0
  44. package/dist/templates/.claude/commands/maintenance/trinity-docs.md.template +2828 -0
  45. package/dist/templates/{shared/claude-commands → .claude/commands/maintenance}/trinity-readme.md.template +5 -4
  46. package/dist/templates/{shared/claude-commands → .claude/commands/planning}/trinity-decompose.md.template +6 -4
  47. package/dist/templates/{shared/claude-commands → .claude/commands/planning}/trinity-design.md.template +6 -4
  48. package/dist/templates/{shared/claude-commands → .claude/commands/planning}/trinity-plan.md.template +7 -5
  49. package/dist/templates/{shared/claude-commands → .claude/commands/planning}/trinity-requirements.md.template +6 -4
  50. package/dist/templates/{shared/claude-commands → .claude/commands/session}/trinity-continue.md.template +8 -2
  51. package/dist/templates/{shared/claude-commands → .claude/commands/session}/trinity-end.md.template +403 -397
  52. package/dist/templates/{shared/claude-commands → .claude/commands/session}/trinity-start.md.template +8 -2
  53. package/dist/templates/{shared/claude-commands → .claude/commands/utility}/trinity-agents.md.template +8 -2
  54. package/dist/templates/{shared/claude-commands → .claude/commands/utility}/trinity-verify.md.template +8 -3
  55. package/dist/templates/{shared/claude-commands → .claude/commands/utility}/trinity-workorder.md.template +8 -4
  56. package/dist/templates/{knowledge-base → trinity/knowledge-base}/AI-DEVELOPMENT-GUIDE.md.template +1 -1
  57. package/dist/templates/{knowledge-base → trinity/knowledge-base}/ARCHITECTURE.md.template +1 -1
  58. package/dist/templates/{knowledge-base → trinity/knowledge-base}/CODING-PRINCIPLES.md.template +1 -1
  59. package/dist/templates/{knowledge-base → trinity/knowledge-base}/DOCUMENTATION-CRITERIA.md.template +1 -1
  60. package/dist/templates/{knowledge-base → trinity/knowledge-base}/ISSUES.md.template +1 -1
  61. package/dist/templates/{knowledge-base → trinity/knowledge-base}/TESTING-PRINCIPLES.md.template +1 -1
  62. package/dist/templates/{knowledge-base → trinity/knowledge-base}/Technical-Debt.md.template +1 -1
  63. package/dist/templates/{knowledge-base → trinity/knowledge-base}/To-do.md.template +1 -1
  64. package/dist/templates/{knowledge-base → trinity/knowledge-base}/Trinity.md.template +1 -1
  65. package/dist/templates/trinity/templates/documentation/api-docs/README.md.template +218 -0
  66. package/dist/templates/trinity/templates/documentation/configuration/documentation-structure.md.template +71 -0
  67. package/dist/templates/trinity/templates/documentation/configuration/env-example-generator.md.template +387 -0
  68. package/dist/templates/trinity/templates/documentation/discovery/api-endpoint-scanner.md.template +343 -0
  69. package/dist/templates/trinity/templates/documentation/discovery/component-discovery.md.template +254 -0
  70. package/dist/templates/trinity/templates/documentation/discovery/env-variable-extraction.md.template +316 -0
  71. package/dist/templates/trinity/templates/documentation/discovery/framework-detection.md.template +205 -0
  72. package/dist/templates/trinity/templates/documentation/guides/api-development.md.template +375 -0
  73. package/dist/templates/trinity/templates/documentation/guides/contributing.md.template +488 -0
  74. package/dist/templates/trinity/templates/documentation/guides/deployment.md.template +565 -0
  75. package/dist/templates/trinity/templates/documentation/guides/getting-started.md.template +118 -0
  76. package/dist/templates/trinity/templates/documentation/mermaid-diagrams/api-endpoint-map.md.template +56 -0
  77. package/dist/templates/trinity/templates/documentation/mermaid-diagrams/component-hierarchy.md.template +60 -0
  78. package/dist/templates/trinity/templates/documentation/mermaid-diagrams/database-er.md.template +49 -0
  79. package/dist/templates/trinity/templates/documentation/mermaid-diagrams/mvc-flow.md.template +41 -0
  80. package/dist/templates/trinity/templates/documentation/processes/error-handling-protocol.md.template +166 -0
  81. package/dist/templates/trinity/templates/documentation/processes/fallback-mechanism.md.template +88 -0
  82. package/dist/templates/trinity/templates/documentation/reports/apo-docs-update-checklist.md.template +343 -0
  83. package/dist/templates/trinity/templates/documentation/reports/juno-docs-update-checklist.md.template +1337 -0
  84. package/dist/templates/trinity/templates/documentation/reports/juno-final-report.md.template +237 -0
  85. package/dist/templates/trinity/templates/documentation/reports/juno-internal-report.md.template +461 -0
  86. package/dist/templates/trinity/templates/documentation/validation/documentation-verification-rules.md.template +379 -0
  87. package/dist/templates/trinity/templates/documentation/validation/juno-quality-gates.md.template +282 -0
  88. package/dist/templates/{work-orders → trinity/templates/work-orders}/ANALYSIS-TEMPLATE.md.template +0 -3
  89. package/dist/templates/{work-orders → trinity/templates/work-orders}/AUDIT-TEMPLATE.md.template +0 -16
  90. package/dist/templates/{work-orders → trinity/templates/work-orders}/IMPLEMENTATION-TEMPLATE.md.template +0 -16
  91. package/dist/templates/{work-orders → trinity/templates/work-orders}/INVESTIGATION-TEMPLATE.md.template +0 -15
  92. package/dist/templates/{work-orders → trinity/templates/work-orders}/PATTERN-TEMPLATE.md.template +0 -16
  93. package/dist/templates/{work-orders → trinity/templates/work-orders}/VERIFICATION-TEMPLATE.md.template +0 -16
  94. package/package.json +1 -1
  95. package/dist/templates/shared/claude-commands/trinity-docs.md.template +0 -2577
  96. /package/dist/templates/{claude → .claude}/EMPLOYEE-DIRECTORY.md.template +0 -0
  97. /package/dist/templates/{linting → root/linting}/flutter/.pre-commit-config.yaml.template +0 -0
  98. /package/dist/templates/{linting → root/linting}/flutter/analysis_options.yaml.template +0 -0
  99. /package/dist/templates/{linting → root/linting}/nodejs/.eslintrc-commonjs.json.template +0 -0
  100. /package/dist/templates/{linting → root/linting}/nodejs/.eslintrc-esm.json.template +0 -0
  101. /package/dist/templates/{linting → root/linting}/nodejs/.eslintrc-typescript.json.template +0 -0
  102. /package/dist/templates/{linting → root/linting}/nodejs/.pre-commit-config.yaml.template +0 -0
  103. /package/dist/templates/{linting → root/linting}/nodejs/.prettierrc.json.template +0 -0
  104. /package/dist/templates/{linting → root/linting}/python/.flake8.template +0 -0
  105. /package/dist/templates/{linting → root/linting}/python/.pre-commit-config.yaml.template +0 -0
  106. /package/dist/templates/{linting → root/linting}/python/pyproject.toml.template +0 -0
  107. /package/dist/templates/{linting → root/linting}/rust/.pre-commit-config.yaml.template +0 -0
  108. /package/dist/templates/{linting → root/linting}/rust/clippy.toml.template +0 -0
  109. /package/dist/templates/{linting → root/linting}/rust/rustfmt.toml.template +0 -0
  110. /package/dist/templates/{documentation → trinity/templates/documentation}/ROOT-README.md.template +0 -0
  111. /package/dist/templates/{documentation → trinity/templates/documentation}/SUBDIRECTORY-README.md.template +0 -0
  112. /package/dist/templates/{investigations → trinity/templates/investigations}/bug.md.template +0 -0
  113. /package/dist/templates/{investigations → trinity/templates/investigations}/feature.md.template +0 -0
  114. /package/dist/templates/{investigations → trinity/templates/investigations}/performance.md.template +0 -0
  115. /package/dist/templates/{investigations → trinity/templates/investigations}/security.md.template +0 -0
  116. /package/dist/templates/{investigations → trinity/templates/investigations}/technical.md.template +0 -0
@@ -1,5 +1,11 @@
1
- ---
2
- description: Guide through your first Trinity workflow
1
+ # Trinity Start
2
+
3
+ **Command:** `/session:trinity-start`
4
+ **Purpose:** Guide through your first Trinity workflow
5
+ **Architecture:** ALY workflow selection → Context setup → First task planning
6
+ **Trinity Version:** 2.1.0
7
+ **Last Updated:** 2026-01-21
8
+
3
9
  ---
4
10
 
5
11
  Guide the user through starting their first Trinity Method workflow.
@@ -1,5 +1,11 @@
1
- ---
2
- description: Display Trinity agent directory and information
1
+ # Trinity Agents
2
+
3
+ **Command:** `/utility:trinity-agents`
4
+ **Purpose:** Display Trinity agent directory and information
5
+ **Architecture:** Reference documentation (no execution)
6
+ **Trinity Version:** 2.1.0
7
+ **Last Updated:** 2026-01-21
8
+
3
9
  ---
4
10
 
5
11
  Display the Trinity Method Agent Directory with all 19 specialized agents.
@@ -1,5 +1,11 @@
1
- ---
2
- description: Verify Trinity Method installation completeness
1
+ # Trinity Verify
2
+
3
+ **Command:** `/utility:trinity-verify`
4
+ **Purpose:** Verify Trinity Method installation completeness
5
+ **Architecture:** TAN structure validation → File integrity checks → Deployment verification
6
+ **Trinity Version:** 2.1.0
7
+ **Last Updated:** 2026-01-21
8
+
3
9
  ---
4
10
 
5
11
  Verify that Trinity Method is properly installed in this project.
@@ -450,4 +456,3 @@ ls -la .github/workflows/
450
456
  ```
451
457
 
452
458
  ---
453
-
@@ -1,9 +1,13 @@
1
- ---
2
- description: Create Trinity Method work orders interactively
3
- ---
4
-
5
1
  # Trinity Work Orders
6
2
 
3
+ **Command:** `/utility:trinity-workorder`
4
+ **Purpose:** Create Trinity Method work orders interactively
5
+ **Architecture:** MON wizard → Template selection → Work order creation
6
+ **Trinity Version:** 2.1.0
7
+ **Last Updated:** 2026-01-21
8
+
9
+ ---
10
+
7
11
  ## What Are Work Orders?
8
12
 
9
13
  Work orders are structured task documents that provide clear objectives, task breakdown, progress tracking, context preservation, and quality assurance.
@@ -1,6 +1,6 @@
1
1
  # AI Development Guide
2
2
 
3
- ** Trinity Version:** 2.0.9
3
+ **Trinity Version:** 2.1.0
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -1,5 +1,5 @@
1
1
  # {{PROJECT_NAME}} Architecture
2
- **Trinity Method v2.0**
2
+ **Trinity Version:** 2.1.0
3
3
  **Technology Stack**: {{TECHNOLOGY_STACK}}
4
4
  **Framework**: {{PRIMARY_FRAMEWORK}}
5
5
  **Last Updated**: {{CURRENT_DATE}}
@@ -1,6 +1,6 @@
1
1
  # Coding Principles
2
2
 
3
- ** Trinity Version:** 2.0.9
3
+ **Trinity Version:** 2.1.0
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Documentation Criteria
2
2
 
3
- ** Trinity Version:** 2.0.9
3
+ **Trinity Version:** 2.1.0
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -1,5 +1,5 @@
1
1
  # ISSUES.md - {{PROJECT_NAME}}
2
- **Trinity Method v2.0 - Issue Intelligence System**
2
+ **Trinity Version:** 2.1.0
3
3
  **Technology Stack**: {{TECHNOLOGY_STACK}}
4
4
  **Framework**: {{PRIMARY_FRAMEWORK}}
5
5
  **Last Updated**: {{CURRENT_DATE}}
@@ -1,6 +1,6 @@
1
1
  # Testing Principles
2
2
 
3
- ** Trinity Version:** 2.0.9
3
+ **Trinity Version:** 2.1.0
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -1,5 +1,5 @@
1
1
  # Technical Debt Tracking - {{PROJECT_NAME}}
2
- **Trinity Method v2.0**
2
+ **Trinity Version:** 2.1.0
3
3
  **Technology Stack**: {{TECHNOLOGY_STACK}}
4
4
  **Framework**: {{PRIMARY_FRAMEWORK}}
5
5
  **Last Updated**: {{CURRENT_DATE}}
@@ -1,5 +1,5 @@
1
1
  # To-do List - {{PROJECT_NAME}}
2
- **Trinity Method v2.0**
2
+ **Trinity Version:** 2.1.0
3
3
  **Technology Stack**: {{TECHNOLOGY_STACK}}
4
4
  **Framework**: {{PRIMARY_FRAMEWORK}}
5
5
  **Last Updated**: {{CURRENT_DATE}}
@@ -1,5 +1,5 @@
1
1
  # Trinity Method Implementation - {{PROJECT_NAME}}
2
- ** Trinity Version:** 2.0.9
2
+ **Trinity Version:** 2.1.0
3
3
  **Last Updated**: {{date}}
4
4
  **Technology Stack**: {{TECHNOLOGY_STACK}}
5
5
  **Framework**: {{PRIMARY_FRAMEWORK}}
@@ -0,0 +1,218 @@
1
+ # {{PROJECT_NAME}} API Documentation
2
+
3
+ Complete REST API reference for {{PROJECT_NAME}}.
4
+
5
+ ---
6
+
7
+ ## Overview
8
+
9
+ {{PROJECT_NAME}} provides **{{ENDPOINT_COUNT}} REST API endpoints** across **{{RESOURCE_COUNT}} resources**.
10
+
11
+ **Base URL:** `{{API_BASE_URL}}`
12
+
13
+ **API Version:** {{API_VERSION}}
14
+
15
+ ---
16
+
17
+ ## Authentication
18
+
19
+ {{AUTHENTICATION}}
20
+
21
+ ---
22
+
23
+ ## Request Format
24
+
25
+ All requests should include:
26
+
27
+ ```
28
+ Content-Type: application/json
29
+ {{AUTH_HEADER}}
30
+ ```
31
+
32
+ ---
33
+
34
+ ## Response Format
35
+
36
+ All responses are returned in JSON format:
37
+
38
+ ### Success Response
39
+
40
+ ```json
41
+ {
42
+ "data": { /* Response data */ },
43
+ "status": "success",
44
+ "timestamp": "2026-01-15T12:00:00Z"
45
+ }
46
+ ```
47
+
48
+ ### Error Response
49
+
50
+ ```json
51
+ {
52
+ "error": "Error message",
53
+ "statusCode": 400,
54
+ "timestamp": "2026-01-15T12:00:00Z",
55
+ "path": "/api/endpoint"
56
+ }
57
+ ```
58
+
59
+ ---
60
+
61
+ ## Status Codes
62
+
63
+ | Code | Meaning | Description |
64
+ |------|---------|-------------|
65
+ | 200 | OK | Request succeeded |
66
+ | 201 | Created | Resource created successfully |
67
+ | 204 | No Content | Request succeeded, no content to return |
68
+ | 400 | Bad Request | Invalid request parameters |
69
+ | 401 | Unauthorized | Authentication required |
70
+ | 403 | Forbidden | Insufficient permissions |
71
+ | 404 | Not Found | Resource not found |
72
+ | 409 | Conflict | Resource conflict (e.g., duplicate) |
73
+ | 422 | Unprocessable Entity | Validation error |
74
+ | 429 | Too Many Requests | Rate limit exceeded |
75
+ | 500 | Internal Server Error | Server error |
76
+
77
+ ---
78
+
79
+ ## Rate Limiting
80
+
81
+ {{RATE_LIMITING}}
82
+
83
+ ---
84
+
85
+ ## Pagination
86
+
87
+ List endpoints support pagination using query parameters:
88
+
89
+ ```
90
+ GET /api/resource?page=1&limit=20
91
+ ```
92
+
93
+ **Parameters:**
94
+ - `page` (integer, default: 1) - Page number
95
+ - `limit` (integer, default: 20, max: 100) - Items per page
96
+
97
+ **Response includes pagination metadata:**
98
+
99
+ ```json
100
+ {
101
+ "data": [ /* items */ ],
102
+ "pagination": {
103
+ "page": 1,
104
+ "limit": 20,
105
+ "total": 150,
106
+ "totalPages": 8
107
+ }
108
+ }
109
+ ```
110
+
111
+ ---
112
+
113
+ ## Filtering & Sorting
114
+
115
+ {{FILTERING_SORTING}}
116
+
117
+ ---
118
+
119
+ ## API Resources
120
+
121
+ {{RESOURCES}}
122
+
123
+ ---
124
+
125
+ ## Endpoints
126
+
127
+ {{ENDPOINT_DETAILS}}
128
+
129
+ ---
130
+
131
+ ## Error Codes
132
+
133
+ ### Common Errors
134
+
135
+ {{ERROR_CODES}}
136
+
137
+ ---
138
+
139
+ ## Code Examples
140
+
141
+ ### JavaScript (Fetch)
142
+
143
+ ```javascript
144
+ const response = await fetch('{{API_BASE_URL}}/{{EXAMPLE_ENDPOINT}}', {
145
+ method: 'GET',
146
+ headers: {
147
+ 'Content-Type': 'application/json',
148
+ {{AUTH_HEADER_EXAMPLE}}
149
+ }
150
+ });
151
+
152
+ const data = await response.json();
153
+ console.log(data);
154
+ ```
155
+
156
+ ### cURL
157
+
158
+ ```bash
159
+ curl -X GET '{{API_BASE_URL}}/{{EXAMPLE_ENDPOINT}}' \
160
+ -H 'Content-Type: application/json' \
161
+ {{CURL_AUTH_EXAMPLE}}
162
+ ```
163
+
164
+ ### Python (Requests)
165
+
166
+ ```python
167
+ import requests
168
+
169
+ response = requests.get(
170
+ '{{API_BASE_URL}}/{{EXAMPLE_ENDPOINT}}',
171
+ headers={
172
+ 'Content-Type': 'application/json',
173
+ {{PYTHON_AUTH_EXAMPLE}}
174
+ }
175
+ )
176
+
177
+ data = response.json()
178
+ print(data)
179
+ ```
180
+
181
+ ---
182
+
183
+ ## Webhooks
184
+
185
+ {{WEBHOOKS}}
186
+
187
+ ---
188
+
189
+ ## Versioning
190
+
191
+ {{API_VERSIONING}}
192
+
193
+ ---
194
+
195
+ ## Changelog
196
+
197
+ {{CHANGELOG}}
198
+
199
+ ---
200
+
201
+ ## Related Documentation
202
+
203
+ - [Getting Started](../guides/getting-started.md) - Setup and installation
204
+ - [API Development Guide](../guides/api-development.md) - Creating new endpoints
205
+ - [Deployment Guide](../guides/deployment.md) - Production deployment
206
+
207
+ ---
208
+
209
+ ## Support
210
+
211
+ For API support:
212
+ - **Documentation:** [Full documentation](../README.md)
213
+ - **Issues:** Report bugs via GitHub issues
214
+ - **Questions:** GitHub Discussions
215
+
216
+ ---
217
+
218
+ *Last updated: {{GENERATION_DATE}}*
@@ -0,0 +1,71 @@
1
+ # Documentation Structure Configuration
2
+
3
+ ## Template Paths
4
+
5
+ All documentation templates follow a consistent directory structure:
6
+
7
+ ### Core Templates
8
+ - **Root README**: `src/templates/documentation/ROOT-README.md.template`
9
+ - **Subdirectory README**: `src/templates/documentation/SUBDIRECTORY-README.md.template`
10
+
11
+ ### Mermaid Diagrams (`mermaid-diagrams/`)
12
+ - `mvc-flow.md.template` - MVC architecture flow
13
+ - `database-er.md.template` - Database entity relationships
14
+ - `component-hierarchy.md.template` - Component dependency tree
15
+ - `api-endpoint-map.md.template` - API endpoint organization
16
+
17
+ ### Guides (`guides/`)
18
+ - `getting-started.md.template` - Initial setup and onboarding
19
+ - `api-development.md.template` - API development patterns
20
+ - `deployment.md.template` - Deployment procedures
21
+ - `contributing.md.template` - Contribution guidelines
22
+
23
+ ### API Documentation (`api-docs/`)
24
+ - `README.md.template` - API reference structure
25
+
26
+ ### Configuration (`config/`)
27
+ - `env-example-generator.md.template` - Environment variable examples
28
+
29
+ ### Reports (`reports/`)
30
+ - `juno-final-report.md.template` - Public documentation report
31
+ - `juno-internal-report.md.template` - Internal audit report
32
+
33
+ ### Discovery (`discovery/`)
34
+ - `framework-detection.md.template` - Framework identification patterns
35
+ - `component-discovery.md.template` - Component scanning logic
36
+ - `api-endpoint-scanner.md.template` - API endpoint detection
37
+ - `env-variable-extraction.md.template` - Environment variable parsing
38
+
39
+ ### Validation (`validation/`)
40
+ - `juno-quality-gates.md.template` - Quality gate criteria
41
+ - `documentation-verification-rules.md.template` - Verification rules
42
+ - `apo-self-validation.md.template` - APO self-check procedures
43
+
44
+ ### Processes (`processes/`)
45
+ - `error-handling-protocol.md.template` - Error handling standards
46
+ - `apo-workflow-common.md.template` - Common APO workflow steps
47
+ - `apo-diagram-specific.md.template` - Diagram-specific workflow
48
+ - `apo-guide-specific.md.template` - Guide-specific workflow
49
+ - `apo-config-specific.md.template` - Configuration-specific workflow
50
+ - `fallback-mechanism.md.template` - Fallback procedures
51
+
52
+ ## Component Discovery Patterns
53
+
54
+ **Search patterns for framework components:**
55
+ - Controllers: `**/*Controller.{js,ts,py,rb,go,java,cs,php}`
56
+ - Models: `**/models/**/*.{js,ts,py,rb,go,java,cs,php}`
57
+ - Services: `**/services/**/*.{js,ts,py,rb,go,java,cs,php}`
58
+ - Routes: `**/routes/**/*.{js,ts,py,rb,go,java,cs,php}`
59
+
60
+ ## Verification Glob Patterns
61
+
62
+ **Quality gate file checks:**
63
+ ```javascript
64
+ const verification_globs = [
65
+ "docs/**/README.md",
66
+ "docs/diagrams/**/*.md",
67
+ "docs/guides/**/*.md",
68
+ "docs/api/**/*.md",
69
+ ".env.example"
70
+ ];
71
+ ```