trinity-method-sdk 2.0.8 → 2.0.9

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 (49) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/README.md +1 -1
  3. package/dist/cli/commands/deploy/index.js +1 -1
  4. package/dist/cli/commands/deploy/root-files.js +1 -1
  5. package/dist/cli/commands/deploy/sdk-install.js +1 -1
  6. package/dist/cli/utils/template-processor.js +1 -1
  7. package/dist/templates/agents/aj-team/apo-documentation-specialist.md.template +2 -2
  8. package/dist/templates/agents/aj-team/bas-quality-gate.md.template +3 -3
  9. package/dist/templates/agents/aj-team/bon-dependency-manager.md.template +7 -7
  10. package/dist/templates/agents/aj-team/cap-configuration-specialist.md.template +2 -2
  11. package/dist/templates/agents/aj-team/dra-code-reviewer.md.template +2 -2
  12. package/dist/templates/agents/aj-team/kil-task-executor.md.template +2 -2
  13. package/dist/templates/agents/aj-team/uro-refactoring-specialist.md.template +2 -2
  14. package/dist/templates/agents/audit/juno-auditor.md.template +1 -1
  15. package/dist/templates/agents/deployment/ein-cicd.md.template +3 -2
  16. package/dist/templates/agents/deployment/ino-context.md.template +3 -3
  17. package/dist/templates/agents/deployment/tan-structure.md.template +1 -1
  18. package/dist/templates/agents/deployment/zen-knowledge.md.template +5 -5
  19. package/dist/templates/agents/leadership/aj-cc.md.template +2 -2
  20. package/dist/templates/claude/EMPLOYEE-DIRECTORY.md.template +1 -1
  21. package/dist/templates/documentation/SUBDIRECTORY-README.md.template +1 -1
  22. package/dist/templates/investigations/bug.md.template +2 -2
  23. package/dist/templates/investigations/feature.md.template +2 -2
  24. package/dist/templates/investigations/performance.md.template +2 -2
  25. package/dist/templates/investigations/security.md.template +2 -2
  26. package/dist/templates/investigations/technical.md.template +2 -2
  27. package/dist/templates/knowledge-base/AI-DEVELOPMENT-GUIDE.md.template +1 -1
  28. package/dist/templates/knowledge-base/ARCHITECTURE.md.template +2 -2
  29. package/dist/templates/knowledge-base/CODING-PRINCIPLES.md.template +1 -1
  30. package/dist/templates/knowledge-base/DOCUMENTATION-CRITERIA.md.template +1 -1
  31. package/dist/templates/knowledge-base/ISSUES.md.template +2 -2
  32. package/dist/templates/knowledge-base/TESTING-PRINCIPLES.md.template +1 -1
  33. package/dist/templates/knowledge-base/Technical-Debt.md.template +2 -2
  34. package/dist/templates/knowledge-base/To-do.md.template +2 -2
  35. package/dist/templates/knowledge-base/Trinity.md.template +4 -3
  36. package/dist/templates/root/TRINITY.md.template +1 -1
  37. package/dist/templates/shared/claude-commands/trinity-changelog.md.template +2 -2
  38. package/dist/templates/shared/claude-commands/trinity-continue.md.template +1 -1
  39. package/dist/templates/shared/claude-commands/trinity-docs.md.template +376 -7
  40. package/dist/templates/shared/claude-commands/trinity-end.md.template +397 -397
  41. package/dist/templates/shared/claude-commands/trinity-readme.md.template +141 -33
  42. package/dist/templates/shared/claude-commands/trinity-verify.md.template +1 -1
  43. package/dist/templates/source/base-CLAUDE.md.template +310 -310
  44. package/dist/templates/source/flutter-CLAUDE.md.template +593 -593
  45. package/dist/templates/source/nodejs-CLAUDE.md.template +531 -531
  46. package/dist/templates/source/python-CLAUDE.md.template +510 -510
  47. package/dist/templates/source/react-CLAUDE.md.template +513 -513
  48. package/dist/templates/source/rust-CLAUDE.md.template +653 -653
  49. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -19,6 +19,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
 
20
20
  ### Security
21
21
 
22
+ ## [2.0.9] - 2026-01-12
23
+
24
+ ### Changed
25
+
26
+ - **Trinity-docs command specification** - Added evidence-based documentation verification
27
+ - Added Rule 2: Evidence-Based Documentation Only - prevents documenting uninstalled tools
28
+ - Added Phase 1 Step 6: Tool & Feature Verification for all project types
29
+ - Added tool verification report to Phase 5 output
30
+ - Prevents aspirational/best-practice content that doesn't exist in codebase
31
+ - Addresses incident where Lighthouse was documented without being installed
32
+
33
+ - **Trinity-readme command specification** - Removed Trinity self-documentation conflicts
34
+ - Deleted Type C Template that documented Trinity infrastructure (violated Rule 1)
35
+ - Added Rule 1 Enforcement Checklist with verification commands
36
+ - Added Phase 1 Step 4.5: Filter Gitignored and Trinity Directories
37
+ - Added Trinity Detection Warning to explicitly skip trinity/ and .claude/
38
+ - Removed trinity/ from glob patterns and project structure examples
39
+ - Addresses incident where trinity/ was included in README file tree despite being gitignored
40
+
41
+ - **Trinity-readme command specification** - Added LICENSE file verification for badges
42
+ - Added Phase 1 Step 7: License Verification - reads actual LICENSE file
43
+ - LICENSE file is now source of truth (priority over package.json)
44
+ - Detects license type from file header (MIT, ISC, Apache, GPL, BSD, etc.)
45
+ - Warns when package.json license field doesn't match LICENSE file
46
+ - Falls back to package.json only if LICENSE file doesn't exist
47
+ - Addresses incident where ISC badge was generated despite MIT LICENSE file
48
+
49
+ - **Trinity-docs command specification** - Added Trinity reference sanitization enforcement
50
+ - Added Rule 1 Forbidden Patterns - explicit list of patterns that must not appear in docs/
51
+ - Added Phase 4.5: Trinity Reference Sanitization - scans and removes Trinity references
52
+ - Added Rule 1 Compliance verification to Phase 5 report with pass/fail status
53
+ - Removed Trinity report link from docs/README.md template footer
54
+ - Prevents Trinity Method, agent names, commands, and infrastructure references in user docs
55
+ - Addresses incident where 7 documentation files contained Trinity Method references
56
+
22
57
  ## [2.0.8] - 2026-01-08
23
58
 
24
59
  ### Added
package/README.md CHANGED
@@ -492,7 +492,7 @@ npm run build
492
492
  npm publish --access public
493
493
 
494
494
  # 3. Create git tag and push
495
- git tag -a v2.0.8 -m "Release v2.0.8"
495
+ git tag -a v2.0.9 -m "Release v2.0.9"
496
496
  git push origin main --follow-tags
497
497
  ```
498
498
 
@@ -98,7 +98,7 @@ export async function deploy(options) {
98
98
  PACKAGE_MANAGER: stack.packageManager || 'npm',
99
99
  BACKEND_FRAMEWORK: stack.framework,
100
100
  CURRENT_DATE: new Date().toISOString(),
101
- TRINITY_VERSION: pkg.version || '2.0.8',
101
+ TRINITY_VERSION: pkg.version || '2.0.9',
102
102
  };
103
103
  // STEP 4: Create directory structure
104
104
  const directoriesCreated = await createDirectories(spinner);
@@ -39,7 +39,7 @@ async function deployRootClaudeMarkdown(templatesPath, variables) {
39
39
  */
40
40
  async function deployVersionFile(pkgVersion) {
41
41
  const versionPath = validatePath('trinity/VERSION');
42
- await fs.writeFile(versionPath, pkgVersion || '2.0.8');
42
+ await fs.writeFile(versionPath, pkgVersion || '2.0.9');
43
43
  return 1;
44
44
  }
45
45
  /**
@@ -24,7 +24,7 @@ export async function installSDK(spinner) {
24
24
  if (!packageJson.dependencies) {
25
25
  packageJson.dependencies = {};
26
26
  }
27
- packageJson.dependencies['trinity-method-sdk'] = '^2.0.8';
27
+ packageJson.dependencies['trinity-method-sdk'] = '^2.0.9';
28
28
  await fs.writeJson(packageJsonPath, packageJson, { spaces: 2 });
29
29
  spinner.text = 'Installing Trinity Method SDK (this may take a moment)...';
30
30
  // Install dependencies
@@ -24,7 +24,7 @@ const VARIABLE_RESOLVERS = {
24
24
  DEPLOYMENT_TIMESTAMP: (v) => toString(v.DEPLOYMENT_TIMESTAMP || v.timestamp) || new Date().toISOString(),
25
25
  LANGUAGE: (v) => toString(v.LANGUAGE || v.language) || 'Unknown',
26
26
  PACKAGE_MANAGER: (v) => toString(v.PACKAGE_MANAGER || v.packageManager) || 'npm',
27
- TRINITY_VERSION: (v) => toString(v.TRINITY_VERSION) || '2.0.8',
27
+ TRINITY_VERSION: (v) => toString(v.TRINITY_VERSION) || '2.0.9',
28
28
  TECHNOLOGY_STACK: (v) => toString(v.TECHNOLOGY_STACK || v.TECH_STACK || v.techStack) || 'Unknown',
29
29
  PRIMARY_FRAMEWORK: (v) => toString(v.PRIMARY_FRAMEWORK || v.FRAMEWORK || v.framework) || 'Generic',
30
30
  CURRENT_DATE: (v) => toString(v.CURRENT_DATE) || new Date().toISOString().split('T')[0],
@@ -567,6 +567,6 @@ Before handing back to KIL:
567
567
  ---
568
568
 
569
569
  **Agent Maintained By**: Trinity Method SDK Team
570
- **Version**: 2.0.0
571
- **Last Updated**: 2025-12-19
570
+ ** Trinity Version:** 2.0.9
571
+ **Last Updated:** 2026-01-12
572
572
  **Coordinates With**: JUNO (receives audit findings), KIL (invoked for API docs during implementation)
@@ -771,8 +771,8 @@ Before approving task:
771
771
  ---
772
772
 
773
773
  **Agent Maintained By**: Trinity Method SDK Team
774
- **Version**: 2.0.0
775
- **Last Updated**: 2025-10-11
774
+ **Trinity Version:** 2.0.9
775
+ **Last Updated:** 2026-01-12
776
776
  **Coordinates With**: KIL, DRA
777
777
 
778
778
  ---
@@ -791,7 +791,7 @@ Trinity supports configuration at multiple levels. Priority (highest to lowest):
791
791
  ```markdown
792
792
  # trinity/knowledge-base/TESTING-PRINCIPLES.md
793
793
  COVERAGE_THRESHOLD=85
794
-
794
+
795
795
  # trinity/knowledge-base/CODING-PRINCIPLES.md
796
796
  MAX_FUNCTION_LENGTH=50
797
797
  ```
@@ -102,7 +102,7 @@ npm test
102
102
  "status": "success",
103
103
  "data": {
104
104
  "package": "email-validator",
105
- "versionInstalled": "2.0.8",
105
+ "versionInstalled": "2.0.0",
106
106
  "securityAudit": "passed",
107
107
  "vulnerabilities": 0,
108
108
  "testsAfterInstall": "passed",
@@ -365,11 +365,11 @@ npm audit
365
365
 
366
366
  # 3. Install
367
367
  npm install email-validator@^2.0.0
368
- # ✅ Installed v2.0.8
368
+ # ✅ Installed v2.0.9
369
369
 
370
370
  # 4. Verify
371
371
  npm ls email-validator
372
- # ✅ email-validator@2.0.8
372
+ # ✅ email-validator@2.0.9
373
373
 
374
374
  # 5. Run tests
375
375
  npm test
@@ -384,7 +384,7 @@ npm test
384
384
  "data": {
385
385
  "package": "email-validator",
386
386
  "versionRequested": "^2.0.0",
387
- "versionInstalled": "2.0.8",
387
+ "versionInstalled": "2.0.5",
388
388
  "weeklyDownloads": "5,234,567",
389
389
  "securityAudit": "passed",
390
390
  "vulnerabilities": 0,
@@ -514,7 +514,7 @@ npm install react@18.0.0 --dry-run
514
514
  "data": {
515
515
  "action": "install",
516
516
  "package": "email-validator",
517
- "versionInstalled": "2.0.8",
517
+ "versionInstalled": "2.0.5",
518
518
  "securityAudit": "passed",
519
519
  "vulnerabilities": 0,
520
520
  "testsAfterInstall": "passed",
@@ -631,6 +631,6 @@ Before handing back to KIL:
631
631
  ---
632
632
 
633
633
  **Agent Maintained By**: Trinity Method SDK Team
634
- **Version**: 2.0.0
635
- **Last Updated**: 2025-10-11
634
+ **Trinity Version:** 2.0.9
635
+ **Last Updated:** 2026-01-12
636
636
  **Coordinates With**: KIL (invoked as-needed)
@@ -665,6 +665,6 @@ Before handing back to KIL:
665
665
  ---
666
666
 
667
667
  **Agent Maintained By**: Trinity Method SDK Team
668
- **Version**: 2.0.0
669
- **Last Updated**: 2025-10-11
668
+ **Trinity Version:** 2.0.9
669
+ **Last Updated:** 2026-01-12
670
670
  **Coordinates With**: KIL (invoked as-needed)
@@ -656,8 +656,8 @@ Before approving phase completion:
656
656
  ---
657
657
 
658
658
  **Agent Maintained By**: Trinity Method SDK Team
659
- **Version**: 2.0.0
660
- **Last Updated**: 2025-10-11
659
+ **Trinity Version:** 2.0.9
660
+ **Last Updated:** 2026-01-12
661
661
  **Coordinates With**: BAS, KIL, AJ MAESTRO
662
662
 
663
663
  ---
@@ -694,8 +694,8 @@ Acceptance Criteria:
694
694
  ---
695
695
 
696
696
  **Agent Maintained By**: Trinity Method SDK Team
697
- **Version**: 2.0.0
698
- **Last Updated**: 2025-10-11
697
+ **Trinity Version:** 2.0.9
698
+ **Last Updated:** 2026-01-12
699
699
  **Coordinates With**: EUS, BAS, DRA, APO, BON, CAP, URO
700
700
 
701
701
  ---
@@ -754,6 +754,6 @@ Before handing back to KIL:
754
754
  ---
755
755
 
756
756
  **Agent Maintained By**: Trinity Method SDK Team
757
- **Version**: 2.0.0
758
- **Last Updated**: 2025-10-11
757
+ **Trinity Version:** 2.0.9
758
+ **Last Updated:** 2026-01-12
759
759
  **Coordinates With**: KIL (invoked during REFACTOR phase)
@@ -9,7 +9,7 @@ tools: Read, Bash, Glob, Grep
9
9
  **Role:** Comprehensive Trinity v2.0 deployment audit and quality assurance
10
10
  **Team:** Audit Team
11
11
  **Specialization:** Deployment verification, compliance checking, quality metrics reporting, codebase audits
12
- **Trinity Version:** v2.0
12
+ **Trinity Version:** 2.0.9
13
13
 
14
14
  ---
15
15
 
@@ -9,7 +9,7 @@ tools: Read, Write, Edit, Bash
9
9
  **Role:** Continuous Integration/Continuous Deployment automation with BAS quality gate integration
10
10
  **Team:** Deployment Team
11
11
  **Specialization:** GitHub Actions, pre-commit hooks, coverage reporting, BAS 6-phase gate integration
12
- **Trinity Version:** v2.0
12
+ **Trinity Version:** 2.0.9
13
13
 
14
14
  ---
15
15
 
@@ -689,6 +689,7 @@ Ein's work is complete when:
689
689
 
690
690
  ---
691
691
 
692
- **Trinity Method Version:** v2.0
692
+ **Trinity Version:** 2.0.9
693
+ **Last Updated:** 2026-01-12
693
694
  **Specialist:** Ein (CI/CD)
694
695
  **v2.0 Integration:** BAS quality gates, 80% coverage enforcement, pre-commit hooks
@@ -9,7 +9,7 @@ tools: Read, Write, Edit, Bash
9
9
  **Role:** CLAUDE.md hierarchy management and ISSUES.md database creation
10
10
  **Team:** Deployment Team
11
11
  **Specialization:** Project context establishment, behavioral hierarchy, issue tracking structure
12
- **Trinity Version:** v2.0
12
+ **Trinity Version:** 2.0.9
13
13
 
14
14
  ---
15
15
 
@@ -272,7 +272,7 @@ When working on this project, follow Trinity Method v2.0:
272
272
 
273
273
  ---
274
274
 
275
- **Last Updated:** {{DEPLOYMENT_TIMESTAMP}}
275
+ **Last Updated**: {{DEPLOYMENT_TIMESTAMP}}
276
276
  **Updated By:** INO (Context Specialist)
277
277
  **Trinity Version:** {{TRINITY_VERSION}}
278
278
  ```
@@ -311,7 +311,7 @@ INO must UPDATE trinity/knowledge-base/ISSUES.md with this structure:
311
311
 
312
312
  **Project:** {{PROJECT_NAME}}
313
313
  **Maintained By:** Trinity Method v2.0
314
- **Last Updated:** {{DEPLOYMENT_TIMESTAMP}}
314
+ ****Last Updated**: {{DEPLOYMENT_TIMESTAMP}}
315
315
 
316
316
  ---
317
317
 
@@ -9,7 +9,7 @@ tools: Bash, Read, Edit, Glob, Grep
9
9
  **Role:** Trinity Method v2.0 folder structure verification and validation
10
10
  **Team:** Deployment Team
11
11
  **Specialization:** Directory structure, agent deployment verification, technical debt baseline establishment
12
- **Trinity Version:** v2.0
12
+ **Trinity Version:** 2.0.9
13
13
 
14
14
  ---
15
15
 
@@ -58,8 +58,8 @@ Location: `trinity/knowledge-base/ARCHITECTURE.md`
58
58
  **Framework:** {{FRAMEWORK}}
59
59
  **Tech Stack:** {{TECH_STACK}}
60
60
  **Source Directory:** {{SOURCE_DIR}}
61
- **Trinity Version:** {{TRINITY_VERSION}} (v2.0)
62
- **Last Updated:** {{DEPLOYMENT_TIMESTAMP}}
61
+ **Trinity Version:** {{TRINITY_VERSION}}
62
+ **Last Updated**: {{DEPLOYMENT_TIMESTAMP}}
63
63
 
64
64
  ## System Overview
65
65
 
@@ -305,7 +305,7 @@ Location: `trinity/knowledge-base/To-do.md`
305
305
  ```markdown
306
306
  # {{PROJECT_NAME}} - Tasks
307
307
 
308
- **Last Updated:** {{DEPLOYMENT_TIMESTAMP}}
308
+ **Last Updated**: {{DEPLOYMENT_TIMESTAMP}}
309
309
  **Framework:** {{FRAMEWORK}}
310
310
  **Trinity Version:** {{TRINITY_VERSION}} (v2.0)
311
311
 
@@ -445,7 +445,7 @@ When finished, confirm:
445
445
 
446
446
  ---
447
447
 
448
- **Trinity Method Version:** {{TRINITY_VERSION}} (v2.0)
448
+ **Trinity Method Version:** {{TRINITY_VERSION}}
449
449
  **Deployed:** {{DEPLOYMENT_TIMESTAMP}}
450
450
  **Specialist:** ZEN (Knowledge Base)
451
- **v2.0 Integration:** Complete
451
+ **v2.0.9 Integration:** Complete
@@ -323,7 +323,7 @@ Recommendation: Option 1 (Continue with AJ MAESTRO for quality assurance)
323
323
 
324
324
  **AJ CC Handoff to ALY**:
325
325
  ```
326
- ALY, user session interrupted mid-implementation. WO-042 needs completion with
326
+ ALY, user session interrupted mid-implementation. WO-042 needs completion with
327
327
  AJ MAESTRO coordination. Recommend resuming at Task 4 with BAS quality gates.
328
328
  ```
329
329
 
@@ -456,7 +456,7 @@ As AJ (Implementation Lead), you are:
456
456
 
457
457
  ---
458
458
 
459
- **Trinity Method Version:** {{TRINITY_VERSION}}
459
+ **Trinity Version:** 2.0.9
460
460
  **Deployed:** {{DEPLOYMENT_TIMESTAMP}}
461
461
  **Project:** {{PROJECT_NAME}}
462
462
  **Framework:** {{FRAMEWORK}}
@@ -2,7 +2,7 @@
2
2
  **Project:** {{PROJECT_NAME}}
3
3
  **Framework:** {{FRAMEWORK}}
4
4
  **Trinity Version:** {{TRINITY_VERSION}}
5
- **Last Updated:** {{DEPLOYMENT_TIMESTAMP}}
5
+ **Last Updated**: {{DEPLOYMENT_TIMESTAMP}}
6
6
 
7
7
  ---
8
8
 
@@ -238,7 +238,7 @@ See [Contributing Guidelines](../../CONTRIBUTING.md) for more details.
238
238
 
239
239
  ---
240
240
 
241
- **Last Updated:** {{CURRENT_DATE}}
241
+ **Last Updated**: {{CURRENT_DATE}}
242
242
 
243
243
  ---
244
244
 
@@ -479,6 +479,6 @@ When investigation is complete:
479
479
  **Investigation Status:** {{status}}
480
480
  **Priority:** {{priority}}
481
481
  **Created:** {{createdAt}}
482
- **Last Updated:** {{lastUpdated}}
482
+ **Last Updated**: {{lastUpdated}}
483
483
  **Next Review:** {{nextReview}}
484
- **Investigator:** {{investigator}}
484
+ **Investigator:** {{investigator}}
@@ -556,9 +556,9 @@ When investigation is complete:
556
556
  **Investigation Status:** {{status}}
557
557
  **Priority:** {{priority}}
558
558
  **Created:** {{createdAt}}
559
- **Last Updated:** {{lastUpdated}}
559
+ **Last Updated**: {{lastUpdated}}
560
560
  **Next Review:** {{nextReview}}
561
561
  **Investigator:** {{investigator}}
562
562
 
563
563
  **Feature Status:** [Not Started / In Development / In Testing / Launched]
564
- **Launch Date:** [Target date]
564
+ **Launch Date:** [Target date]
@@ -618,8 +618,8 @@ When investigation is complete:
618
618
  **Investigation Status:** {{status}}
619
619
  **Priority:** {{priority}}
620
620
  **Created:** {{createdAt}}
621
- **Last Updated:** {{lastUpdated}}
621
+ **Last Updated**: {{lastUpdated}}
622
622
  **Next Review:** {{nextReview}}
623
623
  **Investigator:** {{investigator}}
624
624
 
625
- **Performance Improvement:** [X% faster]
625
+ **Performance Improvement:** [X% faster]
@@ -706,9 +706,9 @@ When investigation is complete:
706
706
  **Investigation Status:** {{status}}
707
707
  **Priority:** {{priority}}
708
708
  **Created:** {{createdAt}}
709
- **Last Updated:** {{lastUpdated}}
709
+ **Last Updated**: {{lastUpdated}}
710
710
  **Next Review:** {{nextReview}}
711
711
  **Investigator:** {{investigator}}
712
712
 
713
713
  **Severity:** {{severity}}
714
- **Remediation Status:** [Not Started / In Progress / Completed]
714
+ **Remediation Status:** [Not Started / In Progress / Completed]
@@ -429,5 +429,5 @@ When investigation is complete:
429
429
 
430
430
  **Investigation Status:** {{status}}
431
431
  **Completion:** [X%]
432
- **Last Updated:** {{lastUpdated}}
433
- **Next Review:** {{nextReview}}
432
+ **Last Updated**: {{lastUpdated}}
433
+ **Next Review:** {{nextReview}}
@@ -1,6 +1,6 @@
1
1
  # AI Development Guide
2
2
 
3
- **Version**: 2.0.0
3
+ ** Trinity Version:** 2.0.9
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -422,7 +422,7 @@ Updates_Required:
422
422
  2. **Update Content**: Make specific changes (don't just update timestamp)
423
423
  3. **Verify Placeholders**: Ensure no `{{VARIABLE}}` syntax introduced
424
424
  4. **Check Cross-References**: Update related documents if needed
425
- 5. **Update Timestamp**: Set `Last Updated: {{CURRENT_DATE}}` to actual date
425
+ 5. **Update Timestamp**: Set `**Last Updated**: {{CURRENT_DATE}}` to actual date
426
426
  6. **Git Commit**: Commit with message like "docs: update ARCHITECTURE.md - added UserAuth component"
427
427
 
428
428
  **Quality Checklist:**
@@ -449,4 +449,4 @@ Updates_Required:
449
449
  **Update Frequency**: As needed (session-based)
450
450
  **Maintained By**: Development team using Trinity Method
451
451
  **Referenced By**: `/trinity-end` command for session updates
452
- **Last Updated**: {{CURRENT_DATE}}
452
+ **Last Updated**: {{CURRENT_DATE}}
@@ -1,6 +1,6 @@
1
1
  # Coding Principles
2
2
 
3
- **Version**: 2.0.0
3
+ ** Trinity Version:** 2.0.9
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Documentation Criteria
2
2
 
3
- **Version**: 2.0.0
3
+ ** Trinity Version:** 2.0.9
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -482,7 +482,7 @@ Updates_Required:
482
482
  5. **Update Metrics**: Increment counts, update averages
483
483
  6. **Cross-Reference**: Update related documents (To-do, Technical-Debt, etc.)
484
484
  7. **Pattern Library**: Create trinity/patterns/ file if reusable solution
485
- 8. **Update Timestamp**: Set `Last Updated: {{CURRENT_DATE}}` to actual date
485
+ 8. **Update Timestamp**: Set `**Last Updated**: {{CURRENT_DATE}}` to actual date
486
486
 
487
487
  **Quality Checklist:**
488
488
  - [ ] Issue has complete symptoms, root cause, and solution
@@ -536,4 +536,4 @@ Updates_Required:
536
536
  ---
537
537
 
538
538
  *Issue tracking powered by Trinity Method v2.0*
539
- *Continuous pattern recognition and prevention system*
539
+ *Continuous pattern recognition and prevention system*
@@ -1,6 +1,6 @@
1
1
  # Testing Principles
2
2
 
3
- **Version**: 2.0.0
3
+ ** Trinity Version:** 2.0.9
4
4
  **Last Updated**: {{date}}
5
5
  **Project**: {{projectName}}
6
6
 
@@ -549,7 +549,7 @@ Updates_Required:
549
549
  4. **Calculate Trends**: Determine if debt is improving/degrading/stable
550
550
  5. **Update Cross-Refs**: Link related debt items to issues/todos
551
551
  6. **Prioritize**: Update debt reduction plan based on new ROI analysis
552
- 7. **Update Timestamp**: Set `Last Updated: {{CURRENT_DATE}}` to actual date
552
+ 7. **Update Timestamp**: Set `**Last Updated**: {{CURRENT_DATE}}` to actual date
553
553
 
554
554
  **Metric Calculation Commands** (for reference):
555
555
  ```bash
@@ -637,4 +637,4 @@ npm run test:coverage -- --json | jq '.total.lines.pct'
637
637
  ---
638
638
 
639
639
  *Technical Debt tracking powered by Trinity Method v2.0*
640
- *Continuous monitoring and reduction system*
640
+ *Continuous monitoring and reduction system*
@@ -354,7 +354,7 @@ Updates_Required:
354
354
  2. **Update Section**: Modify appropriate priority section or backlog
355
355
  3. **Cross-Reference**: Check if ISSUES/Technical-Debt need updates
356
356
  4. **Recalculate Metrics**: Update velocity, sprint status if needed
357
- 5. **Update Timestamp**: Set `Last Updated: {{CURRENT_DATE}}`
357
+ 5. **Update Timestamp**: Set `**Last Updated**: {{CURRENT_DATE}}`
358
358
 
359
359
  **Quality Checklist:**
360
360
  - [ ] All tasks have clear descriptions (what needs to be done)
@@ -404,4 +404,4 @@ Updates_Required:
404
404
  ---
405
405
 
406
406
  *Task management powered by Trinity Method v2.0*
407
- *Investigation-first development approach*
407
+ *Investigation-first development approach*
@@ -1,5 +1,6 @@
1
1
  # Trinity Method Implementation - {{PROJECT_NAME}}
2
- **Version**: 7.0
2
+ ** Trinity Version:** 2.0.9
3
+ **Last Updated**: {{date}}
3
4
  **Technology Stack**: {{TECHNOLOGY_STACK}}
4
5
  **Framework**: {{PRIMARY_FRAMEWORK}}
5
6
  **Last Updated**: {{CURRENT_DATE}}
@@ -431,7 +432,7 @@ Updates_Required:
431
432
  2. **Update Section**: Modify protocols, baselines, or workflows
432
433
  3. **Document Rationale**: Why was this change made?
433
434
  4. **Update Metrics**: Adjust success criteria if needed
434
- 5. **Update Timestamp**: Set `Last Updated: {{CURRENT_DATE}}`
435
+ 5. **Update Timestamp**: Set `**Last Updated**: {{CURRENT_DATE}}`
435
436
 
436
437
  **Quality Checklist:**
437
438
  - [ ] Change improves methodology (not just one-off adjustment)
@@ -461,4 +462,4 @@ Updates_Required:
461
462
  ---
462
463
 
463
464
  *Trinity Method implementation specific to {{PROJECT_NAME}}*
464
- *Continuously evolved based on project learnings*
465
+ *Continuously evolved based on project learnings*
@@ -1,6 +1,6 @@
1
1
  # {{PROJECT_NAME}} - Trinity Method
2
2
 
3
- **Version:** {{TRINITY_VERSION}}
3
+ ** Trinity Version:** {{TRINITY_VERSION}}
4
4
  **Deployed:** {{DEPLOYMENT_TIMESTAMP}}
5
5
 
6
6
  ---
@@ -644,5 +644,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
644
644
 
645
645
  ---
646
646
 
647
- **Command Specification Version:** 2.0.0
648
- **Last Updated:** 2025-12-27
647
+ ** Trinity Version:** 2.0.9
648
+ **Last Updated:** 2026-01-12
@@ -48,7 +48,7 @@ git log --oneline -5
48
48
  ```bash
49
49
  cat trinity/work-orders/WO-042-jwt-refresh-implementation.md
50
50
  # Status: IN PROGRESS
51
- # Last updated: 2 hours ago
51
+ # **Last Updated**: 2 hours ago
52
52
  # Progress: Task 3/7
53
53
  ```
54
54