sdd-mcp-server 3.4.0 → 3.5.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 (69) hide show
  1. package/README.md +75 -40
  2. package/dist/adapters/cli/SDDToolAdapter.js +3 -3
  3. package/dist/adapters/cli/SDDToolAdapter.js.map +1 -1
  4. package/dist/application/services/staticSteering.js +2 -4
  5. package/dist/application/services/staticSteering.js.map +1 -1
  6. package/dist/cli/install-skills.d.ts +10 -32
  7. package/dist/cli/install-skills.js +213 -176
  8. package/dist/cli/install-skills.js.map +1 -1
  9. package/dist/cli/install-target.d.ts +127 -0
  10. package/dist/cli/install-target.js +127 -0
  11. package/dist/cli/install-target.js.map +1 -0
  12. package/dist/cli/migrate-steering.js +13 -13
  13. package/dist/cli/migrate-steering.js.map +1 -1
  14. package/dist/cli/sdd-mcp-cli.d.ts +1 -1
  15. package/dist/cli/sdd-mcp-cli.js +14 -10
  16. package/dist/cli/sdd-mcp-cli.js.map +1 -1
  17. package/dist/cli/tool-support/antigravity.d.ts +6 -1
  18. package/dist/cli/tool-support/antigravity.js +55 -12
  19. package/dist/cli/tool-support/antigravity.js.map +1 -1
  20. package/dist/cli/tool-support/claude-code.d.ts +5 -0
  21. package/dist/cli/tool-support/claude-code.js +93 -0
  22. package/dist/cli/tool-support/claude-code.js.map +1 -0
  23. package/dist/cli/tool-support/codex.d.ts +18 -1
  24. package/dist/cli/tool-support/codex.js +161 -36
  25. package/dist/cli/tool-support/codex.js.map +1 -1
  26. package/dist/cli/tool-support/index.d.ts +2 -2
  27. package/dist/cli/tool-support/root-guidance.d.ts +9 -0
  28. package/dist/cli/tool-support/root-guidance.js +40 -0
  29. package/dist/cli/tool-support/root-guidance.js.map +1 -0
  30. package/dist/cli/tool-support/target-agent-renderer.d.ts +11 -0
  31. package/dist/cli/tool-support/target-agent-renderer.js +52 -0
  32. package/dist/cli/tool-support/target-agent-renderer.js.map +1 -0
  33. package/dist/cli/tool-support/target-installer.d.ts +40 -0
  34. package/dist/cli/tool-support/target-installer.js +116 -0
  35. package/dist/cli/tool-support/target-installer.js.map +1 -0
  36. package/dist/cli/utils/gitignore-manager.d.ts +5 -0
  37. package/dist/cli/utils/gitignore-manager.js +85 -0
  38. package/dist/cli/utils/gitignore-manager.js.map +1 -0
  39. package/dist/cli/utils/preserving-writer.d.ts +13 -0
  40. package/dist/cli/utils/preserving-writer.js +106 -0
  41. package/dist/cli/utils/preserving-writer.js.map +1 -0
  42. package/dist/hooks/HookLoader.js +9 -1
  43. package/dist/hooks/HookLoader.js.map +1 -1
  44. package/dist/index.js +6 -6
  45. package/dist/index.js.map +1 -1
  46. package/dist/shared/BaseManager.d.ts +10 -1
  47. package/dist/shared/BaseManager.js +34 -5
  48. package/dist/shared/BaseManager.js.map +1 -1
  49. package/dist/skills/SkillManager.d.ts +3 -1
  50. package/dist/skills/SkillManager.js +15 -3
  51. package/dist/skills/SkillManager.js.map +1 -1
  52. package/package.json +1 -1
  53. package/sdd-entry.js +2 -2
  54. package/skills/sdd-design/SKILL.md +4 -0
  55. package/skills/sdd-implement/SKILL.md +4 -0
  56. package/skills/sdd-requirements/SKILL.md +4 -0
  57. package/skills/sdd-review/SKILL.md +4 -0
  58. package/skills/sdd-security-check/SKILL.md +4 -0
  59. package/skills/sdd-steering/SKILL.md +4 -0
  60. package/skills/sdd-steering-custom/SKILL.md +4 -0
  61. package/skills/sdd-tasks/SKILL.md +4 -0
  62. package/skills/sdd-test-gen/SKILL.md +4 -0
  63. package/skills/simple-task/SKILL.md +4 -0
  64. package/templates/CLAUDE.md +2 -36
  65. package/templates/codex-AGENTS.md +1 -2
  66. package/templates/codex-hook-runner.js +85 -0
  67. package/dist/utils/sddPaths.d.ts +0 -69
  68. package/dist/utils/sddPaths.js +0 -138
  69. package/dist/utils/sddPaths.js.map +0 -1
@@ -1,138 +0,0 @@
1
- import * as fs from 'fs';
2
- import * as path from 'path';
3
- /**
4
- * SDD directory names
5
- * .spec is the new standard (v2.1.0+)
6
- * .kiro is legacy (for backwards compatibility)
7
- */
8
- export const SDD_DIR = '.spec';
9
- export const SDD_DIR_LEGACY = '.kiro';
10
- /**
11
- * Check if a directory exists
12
- * @param dirPath - Directory path to check
13
- * @returns true if directory exists
14
- */
15
- function dirExists(dirPath) {
16
- try {
17
- return fs.statSync(dirPath).isDirectory();
18
- }
19
- catch {
20
- return false;
21
- }
22
- }
23
- /**
24
- * Get the SDD root directory for a project
25
- * Prefers .spec, falls back to .kiro for legacy projects
26
- *
27
- * @param projectPath - Project root path
28
- * @returns SDD root directory path (.spec or .kiro)
29
- */
30
- export function getSddRoot(projectPath) {
31
- const specPath = path.join(projectPath, SDD_DIR);
32
- const kiroPath = path.join(projectPath, SDD_DIR_LEGACY);
33
- // Prefer .spec if it exists
34
- if (dirExists(specPath)) {
35
- return specPath;
36
- }
37
- // Fall back to .kiro for legacy projects
38
- if (dirExists(kiroPath)) {
39
- return kiroPath;
40
- }
41
- // Default to .spec for new projects
42
- return specPath;
43
- }
44
- /**
45
- * Get the SDD directory name for a project
46
- * Returns the actual directory name used (.spec or .kiro)
47
- *
48
- * @param projectPath - Project root path
49
- * @returns Directory name (.spec or .kiro)
50
- */
51
- export function getSddDirName(projectPath) {
52
- const specPath = path.join(projectPath, SDD_DIR);
53
- const kiroPath = path.join(projectPath, SDD_DIR_LEGACY);
54
- if (dirExists(specPath)) {
55
- return SDD_DIR;
56
- }
57
- if (dirExists(kiroPath)) {
58
- return SDD_DIR_LEGACY;
59
- }
60
- return SDD_DIR;
61
- }
62
- /**
63
- * Get the specs directory path
64
- * @param projectPath - Project root path
65
- * @returns Specs directory path
66
- */
67
- export function getSpecsPath(projectPath) {
68
- return path.join(getSddRoot(projectPath), 'specs');
69
- }
70
- /**
71
- * Get the steering directory path
72
- * @param projectPath - Project root path
73
- * @returns Steering directory path
74
- */
75
- export function getSteeringPath(projectPath) {
76
- return path.join(getSddRoot(projectPath), 'steering');
77
- }
78
- /**
79
- * Get a feature's spec directory path
80
- * @param projectPath - Project root path
81
- * @param featureName - Feature name
82
- * @returns Feature spec directory path
83
- */
84
- export function getFeatureSpecPath(projectPath, featureName) {
85
- return path.join(getSpecsPath(projectPath), featureName);
86
- }
87
- /**
88
- * Get the spec.json file path for a feature
89
- * @param projectPath - Project root path
90
- * @param featureName - Feature name
91
- * @returns spec.json file path
92
- */
93
- export function getSpecJsonPath(projectPath, featureName) {
94
- return path.join(getFeatureSpecPath(projectPath, featureName), 'spec.json');
95
- }
96
- /**
97
- * Check if this is a legacy project (using .kiro instead of .spec)
98
- * @param projectPath - Project root path
99
- * @returns true if project uses .kiro
100
- */
101
- export function isLegacyProject(projectPath) {
102
- const specPath = path.join(projectPath, SDD_DIR);
103
- const kiroPath = path.join(projectPath, SDD_DIR_LEGACY);
104
- // If .spec exists, not legacy
105
- if (dirExists(specPath)) {
106
- return false;
107
- }
108
- // If only .kiro exists, it's legacy
109
- return dirExists(kiroPath);
110
- }
111
- /**
112
- * Get the appropriate SDD directory for new projects
113
- * Always returns .spec for new projects
114
- *
115
- * @param projectPath - Project root path
116
- * @returns Path to create SDD directory (.spec)
117
- */
118
- export function getNewSddRoot(projectPath) {
119
- return path.join(projectPath, SDD_DIR);
120
- }
121
- /**
122
- * Create all required SDD directories for a new project
123
- * @param projectPath - Project root path
124
- * @returns Created paths
125
- */
126
- export function createSddDirectories(projectPath) {
127
- const sddRoot = getNewSddRoot(projectPath);
128
- const paths = [
129
- sddRoot,
130
- path.join(sddRoot, 'specs'),
131
- path.join(sddRoot, 'steering'),
132
- ];
133
- for (const p of paths) {
134
- fs.mkdirSync(p, { recursive: true });
135
- }
136
- return paths;
137
- }
138
- //# sourceMappingURL=sddPaths.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sddPaths.js","sourceRoot":"","sources":["../../src/utils/sddPaths.ts"],"names":[],"mappings":"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"}