trinity-method-sdk 2.0.7 → 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 (53) hide show
  1. package/CHANGELOG.md +267 -218
  2. package/README.md +540 -540
  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/commands/update/index.js +4 -1
  7. package/dist/cli/index.js +1 -0
  8. package/dist/cli/types.d.ts +1 -0
  9. package/dist/cli/utils/detect-stack.js +6 -0
  10. package/dist/cli/utils/template-processor.js +1 -1
  11. package/dist/templates/agents/aj-team/apo-documentation-specialist.md.template +2 -2
  12. package/dist/templates/agents/aj-team/bas-quality-gate.md.template +3 -3
  13. package/dist/templates/agents/aj-team/bon-dependency-manager.md.template +636 -636
  14. package/dist/templates/agents/aj-team/cap-configuration-specialist.md.template +2 -2
  15. package/dist/templates/agents/aj-team/dra-code-reviewer.md.template +2 -2
  16. package/dist/templates/agents/aj-team/kil-task-executor.md.template +2 -2
  17. package/dist/templates/agents/aj-team/uro-refactoring-specialist.md.template +2 -2
  18. package/dist/templates/agents/audit/juno-auditor.md.template +1 -1
  19. package/dist/templates/agents/deployment/ein-cicd.md.template +3 -2
  20. package/dist/templates/agents/deployment/ino-context.md.template +3 -3
  21. package/dist/templates/agents/deployment/tan-structure.md.template +1 -1
  22. package/dist/templates/agents/deployment/zen-knowledge.md.template +5 -5
  23. package/dist/templates/agents/leadership/aj-cc.md.template +2 -2
  24. package/dist/templates/claude/EMPLOYEE-DIRECTORY.md.template +1 -1
  25. package/dist/templates/documentation/SUBDIRECTORY-README.md.template +1 -1
  26. package/dist/templates/investigations/bug.md.template +2 -2
  27. package/dist/templates/investigations/feature.md.template +2 -2
  28. package/dist/templates/investigations/performance.md.template +2 -2
  29. package/dist/templates/investigations/security.md.template +2 -2
  30. package/dist/templates/investigations/technical.md.template +2 -2
  31. package/dist/templates/knowledge-base/AI-DEVELOPMENT-GUIDE.md.template +1 -1
  32. package/dist/templates/knowledge-base/ARCHITECTURE.md.template +2 -2
  33. package/dist/templates/knowledge-base/CODING-PRINCIPLES.md.template +1 -1
  34. package/dist/templates/knowledge-base/DOCUMENTATION-CRITERIA.md.template +1 -1
  35. package/dist/templates/knowledge-base/ISSUES.md.template +2 -2
  36. package/dist/templates/knowledge-base/TESTING-PRINCIPLES.md.template +1 -1
  37. package/dist/templates/knowledge-base/Technical-Debt.md.template +2 -2
  38. package/dist/templates/knowledge-base/To-do.md.template +2 -2
  39. package/dist/templates/knowledge-base/Trinity.md.template +4 -3
  40. package/dist/templates/root/TRINITY.md.template +1 -1
  41. package/dist/templates/shared/claude-commands/trinity-changelog.md.template +2 -2
  42. package/dist/templates/shared/claude-commands/trinity-continue.md.template +1 -1
  43. package/dist/templates/shared/claude-commands/trinity-docs.md.template +376 -7
  44. package/dist/templates/shared/claude-commands/trinity-end.md.template +397 -397
  45. package/dist/templates/shared/claude-commands/trinity-readme.md.template +141 -33
  46. package/dist/templates/shared/claude-commands/trinity-verify.md.template +1 -1
  47. package/dist/templates/source/base-CLAUDE.md.template +310 -310
  48. package/dist/templates/source/flutter-CLAUDE.md.template +593 -593
  49. package/dist/templates/source/nodejs-CLAUDE.md.template +531 -531
  50. package/dist/templates/source/python-CLAUDE.md.template +510 -510
  51. package/dist/templates/source/react-CLAUDE.md.template +513 -513
  52. package/dist/templates/source/rust-CLAUDE.md.template +653 -653
  53. package/package.json +94 -94
package/package.json CHANGED
@@ -1,94 +1,94 @@
1
- {
2
- "name": "trinity-method-sdk",
3
- "version": "2.0.7",
4
- "description": "Trinity Method SDK - Investigation-first development methodology for any project",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "files": [
9
- "dist/",
10
- "!dist/**/*.map",
11
- "README.md",
12
- "LICENSE",
13
- "CHANGELOG.md"
14
- ],
15
- "bin": {
16
- "trinity": "./dist/cli/index.js"
17
- },
18
- "scripts": {
19
- "clean": "rimraf dist",
20
- "prebuild": "npm run clean",
21
- "build": "tsc && npm run copy-templates",
22
- "copy-templates": "node -e \"const fs=require('fs-extra'); fs.copySync('src/templates', 'dist/templates');\"",
23
- "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
24
- "test:unit": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects unit",
25
- "test:integration": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects integration",
26
- "test:e2e": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects e2e --passWithNoTests",
27
- "test:performance": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects performance --passWithNoTests",
28
- "test:coverage": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --coverage",
29
- "test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch",
30
- "lint": "eslint src/ tests/",
31
- "lint:fix": "eslint src/ tests/ --fix",
32
- "format": "prettier --write src/ tests/",
33
- "format:check": "prettier --check src/ tests/",
34
- "type-check": "tsc --noEmit",
35
- "docs:generate": "typedoc --out docs src/",
36
- "pretest": "npm run type-check",
37
- "prepublishOnly": "npm run build && npm run test",
38
- "prepare": "husky"
39
- },
40
- "keywords": [
41
- "trinity-method",
42
- "development-methodology",
43
- "investigation-first",
44
- "ai-coding",
45
- "claude-code",
46
- "cursor",
47
- "copilot"
48
- ],
49
- "author": "Trinity Method",
50
- "license": "MIT",
51
- "devDependencies": {
52
- "@eslint/js": "^9.39.2",
53
- "@jest/globals": "^30.2.0",
54
- "@types/fs-extra": "^11.0.4",
55
- "@types/glob": "^8.1.0",
56
- "@types/inquirer": "^9.0.9",
57
- "@types/jest": "^30.0.0",
58
- "@types/node": "^25.0.3",
59
- "@typescript-eslint/eslint-plugin": "^8.50.0",
60
- "@typescript-eslint/parser": "^8.50.0",
61
- "eslint": "^9.39.2",
62
- "eslint-plugin-jest": "^29.5.0",
63
- "husky": "^9.1.7",
64
- "jest": "^30.2.0",
65
- "jest-mock": "^30.2.0",
66
- "lint-staged": "^16.2.7",
67
- "prettier": "^3.0.0",
68
- "rimraf": "^6.0.1",
69
- "ts-jest": "^29.1.0",
70
- "typedoc": "^0.28.15",
71
- "typescript": "^5.9.3"
72
- },
73
- "dependencies": {
74
- "chalk": "^5.3.0",
75
- "commander": "^14.0.2",
76
- "fs-extra": "^11.3.3",
77
- "glob": "^13.0.0",
78
- "inquirer": "^13.1.0",
79
- "ora": "^9.0.0"
80
- },
81
- "lint-staged": {
82
- "*.{ts,tsx}": [
83
- "eslint --fix",
84
- "prettier --write"
85
- ],
86
- "*.{js,jsx}": [
87
- "eslint --fix",
88
- "prettier --write"
89
- ],
90
- "*.{json,md,yml,yaml}": [
91
- "prettier --write"
92
- ]
93
- }
94
- }
1
+ {
2
+ "name": "trinity-method-sdk",
3
+ "version": "2.0.9",
4
+ "description": "Trinity Method SDK - Investigation-first development methodology for any project",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist/",
10
+ "!dist/**/*.map",
11
+ "README.md",
12
+ "LICENSE",
13
+ "CHANGELOG.md"
14
+ ],
15
+ "bin": {
16
+ "trinity": "./dist/cli/index.js"
17
+ },
18
+ "scripts": {
19
+ "clean": "rimraf dist",
20
+ "prebuild": "npm run clean",
21
+ "build": "tsc && npm run copy-templates",
22
+ "copy-templates": "node -e \"const fs=require('fs-extra'); fs.copySync('src/templates', 'dist/templates');\"",
23
+ "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
24
+ "test:unit": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects unit",
25
+ "test:integration": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects integration",
26
+ "test:e2e": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects e2e --passWithNoTests",
27
+ "test:performance": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --selectProjects performance --passWithNoTests",
28
+ "test:coverage": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --coverage",
29
+ "test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch",
30
+ "lint": "eslint src/ tests/",
31
+ "lint:fix": "eslint src/ tests/ --fix",
32
+ "format": "prettier --write src/ tests/",
33
+ "format:check": "prettier --check src/ tests/",
34
+ "type-check": "tsc --noEmit",
35
+ "docs:generate": "typedoc --out docs src/",
36
+ "pretest": "npm run type-check",
37
+ "prepublishOnly": "npm run build && npm run test",
38
+ "prepare": "husky"
39
+ },
40
+ "keywords": [
41
+ "trinity-method",
42
+ "development-methodology",
43
+ "investigation-first",
44
+ "ai-coding",
45
+ "claude-code",
46
+ "cursor",
47
+ "copilot"
48
+ ],
49
+ "author": "Trinity Method",
50
+ "license": "MIT",
51
+ "devDependencies": {
52
+ "@eslint/js": "^9.39.2",
53
+ "@jest/globals": "^30.2.0",
54
+ "@types/fs-extra": "^11.0.4",
55
+ "@types/glob": "^8.1.0",
56
+ "@types/inquirer": "^9.0.9",
57
+ "@types/jest": "^30.0.0",
58
+ "@types/node": "^25.0.3",
59
+ "@typescript-eslint/eslint-plugin": "^8.50.0",
60
+ "@typescript-eslint/parser": "^8.50.0",
61
+ "eslint": "^9.39.2",
62
+ "eslint-plugin-jest": "^29.5.0",
63
+ "husky": "^9.1.7",
64
+ "jest": "^30.2.0",
65
+ "jest-mock": "^30.2.0",
66
+ "lint-staged": "^16.2.7",
67
+ "prettier": "^3.0.0",
68
+ "rimraf": "^6.0.1",
69
+ "ts-jest": "^29.1.0",
70
+ "typedoc": "^0.28.15",
71
+ "typescript": "^5.9.3"
72
+ },
73
+ "dependencies": {
74
+ "chalk": "^5.3.0",
75
+ "commander": "^14.0.2",
76
+ "fs-extra": "^11.3.3",
77
+ "glob": "^13.0.0",
78
+ "inquirer": "^13.1.0",
79
+ "ora": "^9.0.0"
80
+ },
81
+ "lint-staged": {
82
+ "*.{ts,tsx}": [
83
+ "eslint --fix",
84
+ "prettier --write"
85
+ ],
86
+ "*.{js,jsx}": [
87
+ "eslint --fix",
88
+ "prettier --write"
89
+ ],
90
+ "*.{json,md,yml,yaml}": [
91
+ "prettier --write"
92
+ ]
93
+ }
94
+ }