sdd-mcp-server 1.3.8 → 1.3.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.
- package/README.md +1 -1
- package/mcp-server.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
A Model Context Protocol (MCP) server implementing Spec-Driven Development (SDD) workflows for AI-agent CLIs and IDEs like Claude Code, Cursor, and others.
|
|
8
8
|
|
|
9
|
-
> **✅ v1.3.
|
|
9
|
+
> **✅ v1.3.9 Update**: AI-driven MCP server with language-agnostic workflow tools. Fixed all hardcoded templates, made tools truly universal for any programming language/framework, and added comprehensive AGENTS.md support. Fixed AGENTS.md file placement in .kiro/steering/ directory. Perfect for Spring Boot, React, Python, Go, and any other project!
|
|
10
10
|
|
|
11
11
|
## 🚀 Quick Start
|
|
12
12
|
|
package/mcp-server.js
CHANGED
|
@@ -107,8 +107,8 @@ server.registerTool("sdd-init", {
|
|
|
107
107
|
const requirementsTemplate = `# Requirements Document\n\n## Project Description (Input)\n${description}\n\n## Requirements\n<!-- Will be generated in /kiro:spec-requirements phase -->`;
|
|
108
108
|
await fs.writeFile(path.join(featurePath, 'requirements.md'), requirementsTemplate);
|
|
109
109
|
|
|
110
|
-
// Ensure AGENTS.md exists based on CLAUDE.md (static exception)
|
|
111
|
-
const agentsPath = path.join(
|
|
110
|
+
// Ensure AGENTS.md exists in steering directory based on CLAUDE.md (static exception)
|
|
111
|
+
const agentsPath = path.join(steeringPath, 'AGENTS.md');
|
|
112
112
|
const claudePath = path.join(currentPath, 'CLAUDE.md');
|
|
113
113
|
const agentsExists = await fs.access(agentsPath).then(() => true).catch(() => false);
|
|
114
114
|
if (!agentsExists) {
|
|
@@ -1217,8 +1217,8 @@ These guidelines help maintain a clean and useful git history that makes it easi
|
|
|
1217
1217
|
await fs.writeFile(commitPath, fullCommitContent);
|
|
1218
1218
|
}
|
|
1219
1219
|
|
|
1220
|
-
// Ensure AGENTS.md exists (create from CLAUDE.md if available)
|
|
1221
|
-
const agentsPath = path.join(
|
|
1220
|
+
// Ensure AGENTS.md exists in steering directory (create from CLAUDE.md if available)
|
|
1221
|
+
const agentsPath = path.join(steeringPath, 'AGENTS.md');
|
|
1222
1222
|
const claudePath = path.join(currentPath, 'CLAUDE.md');
|
|
1223
1223
|
const agentsExists = await fs.access(agentsPath).then(() => true).catch(() => false);
|
|
1224
1224
|
if (!agentsExists) {
|
|
@@ -1302,7 +1302,7 @@ Note: Optional for new features or small additions. You can proceed directly to
|
|
|
1302
1302
|
- \`.kiro/steering/structure.md\` - Project organization and architectural decisions (AI analysis template)
|
|
1303
1303
|
- \`.kiro/steering/linus-review.md\` - Code review guidelines (full content)
|
|
1304
1304
|
- \`.kiro/steering/commit.md\` - Commit message standards (full content)
|
|
1305
|
-
-
|
|
1305
|
+
- \`.kiro/steering/AGENTS.md\` - Universal AI agent workflow guidance
|
|
1306
1306
|
|
|
1307
1307
|
**AI-Driven Approach**:
|
|
1308
1308
|
The steering documents now contain analysis instructions for AI agents rather than hardcoded templates. This ensures:
|