specweave 0.21.0 → 0.21.1
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/.claude-plugin/marketplace.json +44 -0
- package/dist/locales/de/.gitkeep +0 -0
- package/dist/locales/de/cli.json +108 -0
- package/dist/locales/en/cli.json +287 -0
- package/dist/locales/en/errors.json +7 -0
- package/dist/locales/en/templates.json +6 -0
- package/dist/locales/es/.gitkeep +0 -0
- package/dist/locales/es/cli.json +41 -0
- package/dist/locales/fr/.gitkeep +0 -0
- package/dist/locales/fr/cli.json +108 -0
- package/dist/locales/ja/.gitkeep +0 -0
- package/dist/locales/ja/cli.json +108 -0
- package/dist/locales/ko/.gitkeep +0 -0
- package/dist/locales/ko/cli.json +108 -0
- package/dist/locales/pt/.gitkeep +0 -0
- package/dist/locales/pt/cli.json +108 -0
- package/dist/locales/ru/.gitkeep +0 -0
- package/dist/locales/ru/cli.json +269 -0
- package/dist/locales/zh/.gitkeep +0 -0
- package/dist/locales/zh/cli.json +108 -0
- package/dist/plugins/specweave-ado/lib/enhanced-ado-sync.d.ts +25 -0
- package/dist/plugins/specweave-ado/lib/enhanced-ado-sync.d.ts.map +1 -0
- package/dist/plugins/specweave-ado/lib/enhanced-ado-sync.js +191 -0
- package/dist/plugins/specweave-ado/lib/enhanced-ado-sync.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/cli/kcat-wrapper.d.ts +57 -0
- package/dist/plugins/specweave-kafka/lib/cli/kcat-wrapper.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/cli/kcat-wrapper.js +248 -0
- package/dist/plugins/specweave-kafka/lib/cli/kcat-wrapper.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/cli/types.d.ts +82 -0
- package/dist/plugins/specweave-kafka/lib/cli/types.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/cli/types.js +13 -0
- package/dist/plugins/specweave-kafka/lib/cli/types.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/mcp/detector.d.ts +49 -0
- package/dist/plugins/specweave-kafka/lib/mcp/detector.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/mcp/detector.js +316 -0
- package/dist/plugins/specweave-kafka/lib/mcp/detector.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/mcp/types.d.ts +70 -0
- package/dist/plugins/specweave-kafka/lib/mcp/types.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/mcp/types.js +23 -0
- package/dist/plugins/specweave-kafka/lib/mcp/types.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/utils/partitioning.d.ts +85 -0
- package/dist/plugins/specweave-kafka/lib/utils/partitioning.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/utils/partitioning.js +281 -0
- package/dist/plugins/specweave-kafka/lib/utils/partitioning.js.map +1 -0
- package/dist/plugins/specweave-kafka/lib/utils/sizing.d.ts +75 -0
- package/dist/plugins/specweave-kafka/lib/utils/sizing.d.ts.map +1 -0
- package/dist/plugins/specweave-kafka/lib/utils/sizing.js +238 -0
- package/dist/plugins/specweave-kafka/lib/utils/sizing.js.map +1 -0
- package/dist/spec-parser.js +629 -0
- package/dist/src/core/increment/conflict-resolver.d.ts.map +1 -1
- package/dist/src/core/increment/conflict-resolver.js +4 -1
- package/dist/src/core/increment/conflict-resolver.js.map +1 -1
- package/dist/src/core/increment/duplicate-detector.d.ts +3 -0
- package/dist/src/core/increment/duplicate-detector.d.ts.map +1 -1
- package/dist/src/core/increment/duplicate-detector.js +22 -4
- package/dist/src/core/increment/duplicate-detector.js.map +1 -1
- package/dist/src/core/sync/spec-content-sync.d.ts +88 -0
- package/dist/src/core/sync/spec-content-sync.d.ts.map +1 -0
- package/dist/src/core/sync/spec-content-sync.js +5 -0
- package/dist/src/core/sync/spec-content-sync.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +1 -1
- package/plugins/specweave-ado/lib/enhanced-ado-sync.js +170 -0
- package/src/templates/AGENTS.md.template +41 -6
|
@@ -237,6 +237,50 @@
|
|
|
237
237
|
"name": "Anton Abyzov",
|
|
238
238
|
"email": "anton.abyzov@gmail.com"
|
|
239
239
|
}
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "specweave-kafka",
|
|
243
|
+
"description": "Apache Kafka event streaming integration with MCP servers, CLI tools (kcat), Terraform modules, and comprehensive observability stack",
|
|
244
|
+
"source": "./plugins/specweave-kafka",
|
|
245
|
+
"category": "development",
|
|
246
|
+
"version": "1.0.0",
|
|
247
|
+
"author": {
|
|
248
|
+
"name": "Anton Abyzov",
|
|
249
|
+
"email": "anton.abyzov@gmail.com"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "specweave-kafka-streams",
|
|
254
|
+
"description": "Kafka Streams library integration - Stream processing with Java/Kotlin, topology patterns, state stores, windowing, joins, and testing frameworks",
|
|
255
|
+
"source": "./plugins/specweave-kafka-streams",
|
|
256
|
+
"category": "development",
|
|
257
|
+
"version": "1.0.0",
|
|
258
|
+
"author": {
|
|
259
|
+
"name": "Anton Abyzov",
|
|
260
|
+
"email": "anton.abyzov@gmail.com"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "specweave-confluent",
|
|
265
|
+
"description": "Confluent Cloud integration - Schema Registry, ksqlDB, Kafka Connect, Flink, stream processing, and enterprise Kafka features",
|
|
266
|
+
"source": "./plugins/specweave-confluent",
|
|
267
|
+
"category": "development",
|
|
268
|
+
"version": "1.0.0",
|
|
269
|
+
"author": {
|
|
270
|
+
"name": "Anton Abyzov",
|
|
271
|
+
"email": "anton.abyzov@gmail.com"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "specweave-n8n",
|
|
276
|
+
"description": "n8n workflow automation integration with Kafka - Event-driven workflows, Kafka triggers, producers, consumers, and workflow patterns for no-code/low-code event processing",
|
|
277
|
+
"source": "./plugins/specweave-n8n",
|
|
278
|
+
"category": "development",
|
|
279
|
+
"version": "1.0.0",
|
|
280
|
+
"author": {
|
|
281
|
+
"name": "Anton Abyzov",
|
|
282
|
+
"email": "anton.abyzov@gmail.com"
|
|
283
|
+
}
|
|
240
284
|
}
|
|
241
285
|
]
|
|
242
286
|
}
|
|
File without changes
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"init": {
|
|
3
|
+
"welcome": "🚀 SpecWeave Initialization",
|
|
4
|
+
"projectName": "Project name:",
|
|
5
|
+
"projectNamePrompt": "Project name (for templates):",
|
|
6
|
+
"projectNameDefault": "my-saas",
|
|
7
|
+
"detectingTool": "Detecting AI tool...",
|
|
8
|
+
"foundClaude": "✅ Found Claude Code",
|
|
9
|
+
"foundCursor": "✅ Found Cursor",
|
|
10
|
+
"foundCopilot": "✅ Found GitHub Copilot",
|
|
11
|
+
"noToolDetected": "No AI tool detected, using Generic adapter",
|
|
12
|
+
"complete": "✨ Initialization complete!",
|
|
13
|
+
"claudeNativeComplete": "✨ Claude Code native installation complete!",
|
|
14
|
+
"claudeNativeBenefits": "✅ Native skills, agents, hooks work out of the box",
|
|
15
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
16
|
+
"readyToBuild": "🚀 Ready to build with SpecWeave!",
|
|
17
|
+
"errors": {
|
|
18
|
+
"invalidName": "Project name must contain only lowercase letters, numbers, and hyphens",
|
|
19
|
+
"alreadyExists": ".specweave directory already exists",
|
|
20
|
+
"cancelled": "❌ Initialization cancelled",
|
|
21
|
+
"invalidLanguage": "❌ Invalid language: {{language}}",
|
|
22
|
+
"supportedLanguages": "Supported languages: {{languages}}",
|
|
23
|
+
"nestedNotSupported": "❌ Nested .specweave/ folders are NOT supported!",
|
|
24
|
+
"parentFound": "Found parent .specweave/ at:",
|
|
25
|
+
"projectCreationFailed": "Failed to create project",
|
|
26
|
+
"commandsCopyFailed": "❌ Commands copy failed: {{error}}",
|
|
27
|
+
"agentsCopyFailed": "❌ Agents copy failed: {{error}}",
|
|
28
|
+
"skillsCopyFailed": "❌ Skills copy failed: {{error}}",
|
|
29
|
+
"hooksCopyFailed": "❌ Hooks copy failed: {{error}}"
|
|
30
|
+
},
|
|
31
|
+
"warnings": {
|
|
32
|
+
"invalidDirName": "⚠️ Current directory name '{{dirName}}' contains invalid characters.",
|
|
33
|
+
"directoryNotEmpty": "⚠️ Current directory contains {{count}} file{{plural}}.",
|
|
34
|
+
"skillsIndexWarning": "⚠️ Warning: Could not generate skills index: {{error}}",
|
|
35
|
+
"skillsIndexNote": "Skills will still work, but manual indexing may be needed."
|
|
36
|
+
},
|
|
37
|
+
"prompts": {
|
|
38
|
+
"confirmInitInCurrent": "Initialize SpecWeave in current directory?",
|
|
39
|
+
"overwriteSpecweave": ".specweave directory already exists. Overwrite?",
|
|
40
|
+
"overwriteDirectory": "Directory {{projectName}} already exists. Overwrite?",
|
|
41
|
+
"enablePlugins": "Enable suggested plugins now?"
|
|
42
|
+
},
|
|
43
|
+
"info": {
|
|
44
|
+
"nestedEnforcement": "SpecWeave enforces a single source of truth:",
|
|
45
|
+
"nestedBullet1": "• Use the parent folder for all increments",
|
|
46
|
+
"nestedBullet2": "• Increments can span multiple subdirectories",
|
|
47
|
+
"nestedBullet3": "• See CLAUDE.md section \"Root-Level .specweave/ Folder\"",
|
|
48
|
+
"nestedToFix": "To fix:",
|
|
49
|
+
"suggestedPlugins": "💡 Suggested Plugins:",
|
|
50
|
+
"copiedFiles": "✓ Copied {{count}} command files",
|
|
51
|
+
"copiedAgents": "✓ Copied {{count}} agent directories",
|
|
52
|
+
"copiedSkills": "✓ Copied {{count}} skill directories",
|
|
53
|
+
"copiedHooks": "✓ Copied {{count}} hook files"
|
|
54
|
+
},
|
|
55
|
+
"progress": {
|
|
56
|
+
"creatingProject": "Creating SpecWeave project...",
|
|
57
|
+
"detected": "Detected {{tool}}...",
|
|
58
|
+
"usingTool": "Using {{tool}}...",
|
|
59
|
+
"directoryCreated": "Directory structure created...",
|
|
60
|
+
"templatesCopied": "Base templates copied...",
|
|
61
|
+
"installingComponents": "Installing Claude Code components...",
|
|
62
|
+
"commandsInstalled": "Slash commands installed...",
|
|
63
|
+
"agentsInstalled": "Agents installed...",
|
|
64
|
+
"skillsInstalled": "Skills installed...",
|
|
65
|
+
"hooksInstalled": "Hooks installed...",
|
|
66
|
+
"generatingIndex": "Generating skills index...",
|
|
67
|
+
"indexGenerated": "Skills index generated...",
|
|
68
|
+
"installingAdapter": "Installing {{tool}} adapter...",
|
|
69
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
70
|
+
"detectingPlugins": "Detecting plugins...",
|
|
71
|
+
"detectedPlugins": "Detected {{count}} suggested plugins",
|
|
72
|
+
"enablingPlugins": "Enabling plugins...",
|
|
73
|
+
"enabledPlugin": "Enabled {{plugin}}",
|
|
74
|
+
"pluginsEnabled": "Plugins enabled"
|
|
75
|
+
},
|
|
76
|
+
"nextSteps": {
|
|
77
|
+
"header": "🎯 Next steps:",
|
|
78
|
+
"cd": "cd {{projectName}}",
|
|
79
|
+
"footer": "🚀 Ready to build with SpecWeave!",
|
|
80
|
+
"docsLink": "Documentation: https://spec-weave.com",
|
|
81
|
+
"githubLink": "GitHub: https://github.com/anton-abyzov/specweave"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"increment": {
|
|
85
|
+
"creating": "📝 Creating increment: {name}",
|
|
86
|
+
"created": "✅ Increment {id} created successfully!",
|
|
87
|
+
"nextStepDo": "Next: Run /specweave.do to start implementation",
|
|
88
|
+
"errors": {
|
|
89
|
+
"incompleteFound": "Cannot create new increment! Previous increments incomplete"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"progress": {
|
|
93
|
+
"currentIncrement": "Current Increment: {id}",
|
|
94
|
+
"status": "Status: {status}",
|
|
95
|
+
"completion": "Completion: {percent}%"
|
|
96
|
+
},
|
|
97
|
+
"translate": {
|
|
98
|
+
"translating": "🌐 Translating content to {language}...",
|
|
99
|
+
"complete": "✅ Translation complete!"
|
|
100
|
+
},
|
|
101
|
+
"version": {
|
|
102
|
+
"current": "SpecWeave version: {version}"
|
|
103
|
+
},
|
|
104
|
+
"errors": {
|
|
105
|
+
"fileNotFound": "❌ File not found: {path}",
|
|
106
|
+
"invalidConfig": "❌ Invalid configuration: {error}"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
{
|
|
2
|
+
"init": {
|
|
3
|
+
"welcome": "🚀 SpecWeave Initialization",
|
|
4
|
+
"projectName": "Project name:",
|
|
5
|
+
"projectNamePrompt": "Project name (for templates):",
|
|
6
|
+
"projectNameDefault": "my-saas",
|
|
7
|
+
"detectingTool": "Detecting AI tool...",
|
|
8
|
+
"foundClaude": "✅ Found Claude Code",
|
|
9
|
+
"foundCursor": "✅ Found Cursor",
|
|
10
|
+
"foundCopilot": "✅ Found GitHub Copilot",
|
|
11
|
+
"noToolDetected": "No AI tool detected, using Generic adapter",
|
|
12
|
+
"complete": "✨ Initialization complete!",
|
|
13
|
+
"claudeNativeComplete": "✨ Claude Code native installation complete!",
|
|
14
|
+
"claudeNativeBenefits": "✅ Native skills, agents, hooks work out of the box",
|
|
15
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
16
|
+
"readyToBuild": "🚀 Ready to build with SpecWeave!",
|
|
17
|
+
"nestedCdCommand": "cd {{path}}",
|
|
18
|
+
"nestedIncCommand": "/specweave.inc \"your-feature\"",
|
|
19
|
+
"pluginEnableLater": "You can enable plugins later with: specweave plugin enable <name>",
|
|
20
|
+
"genericError": "Error:",
|
|
21
|
+
"errors": {
|
|
22
|
+
"invalidName": "Project name must contain only lowercase letters, numbers, and hyphens",
|
|
23
|
+
"alreadyExists": ".specweave directory already exists",
|
|
24
|
+
"cancelled": "❌ Initialization cancelled",
|
|
25
|
+
"invalidLanguage": "❌ Invalid language: {{language}}",
|
|
26
|
+
"supportedLanguages": "Supported languages: {{languages}}",
|
|
27
|
+
"nestedNotSupported": "❌ Nested .specweave/ folders are NOT supported!",
|
|
28
|
+
"parentFound": "Found parent .specweave/ at:",
|
|
29
|
+
"projectCreationFailed": "Failed to create project",
|
|
30
|
+
"commandsCopyFailed": "❌ Commands copy failed: {{error}}",
|
|
31
|
+
"agentsCopyFailed": "❌ Agents copy failed: {{error}}",
|
|
32
|
+
"skillsCopyFailed": "❌ Skills copy failed: {{error}}",
|
|
33
|
+
"hooksCopyFailed": "❌ Hooks copy failed: {{error}}",
|
|
34
|
+
"templatesNotFound": "❌ Error: Templates directory not found at: {{path}}",
|
|
35
|
+
"packageRoot": "Package root: {{root}}",
|
|
36
|
+
"tryingAlternate": "Trying alternate locations...",
|
|
37
|
+
"foundTemplatesAt": "✓ Found templates at: {{path}}",
|
|
38
|
+
"sourceNotFound": "❌ Error: Source {{type}} directory not found",
|
|
39
|
+
"expectedAt": "Expected at: {{path}}",
|
|
40
|
+
"dirname": "__dirname: {{path}}",
|
|
41
|
+
"couldNotFindRoot": "Could not find package root (looking for package.json with name=\"specweave\")",
|
|
42
|
+
"sourceEmpty": "❌ Error: Source {{type}} directory is empty",
|
|
43
|
+
"directory": "Directory: {{path}}",
|
|
44
|
+
"installationIssue": "This indicates a package installation issue.",
|
|
45
|
+
"errorCopying": "❌ Error copying {{type}}: {{error}}",
|
|
46
|
+
"source": "Source: {{path}}",
|
|
47
|
+
"target": "Target: {{path}}"
|
|
48
|
+
},
|
|
49
|
+
"warnings": {
|
|
50
|
+
"invalidDirName": "⚠️ Current directory name '{{dirName}}' contains invalid characters.",
|
|
51
|
+
"directoryNotEmpty": "⚠️ Current directory contains {{count}} file{{plural}}.",
|
|
52
|
+
"skillsIndexWarning": "⚠️ Warning: Could not generate skills index: {{error}}",
|
|
53
|
+
"skillsIndexNote": "Skills will still work, but manual indexing may be needed.",
|
|
54
|
+
"marketplaceCopyFailed": "⚠️ Warning: Could not copy plugin marketplace",
|
|
55
|
+
"marketplaceNotFound": "⚠️ Warning: Plugin marketplace not found",
|
|
56
|
+
"pluginAutoSetupFailed": "⚠️ Warning: Could not setup automatic plugin registration",
|
|
57
|
+
"pluginAutoInstallFailed": "Automatic plugin installation failed (claude CLI not available)"
|
|
58
|
+
},
|
|
59
|
+
"prompts": {
|
|
60
|
+
"confirmInitInCurrent": "Initialize SpecWeave in current directory?",
|
|
61
|
+
"overwriteSpecweave": ".specweave directory already exists. Overwrite?",
|
|
62
|
+
"overwriteDirectory": "Directory {{projectName}} already exists. Overwrite?",
|
|
63
|
+
"enablePlugins": "Enable suggested plugins now?"
|
|
64
|
+
},
|
|
65
|
+
"toolDetection": {
|
|
66
|
+
"header": "AI Tool Detection",
|
|
67
|
+
"detected": "Detected: {{tool}}",
|
|
68
|
+
"confirmPrompt": "Use {{tool}} for this project?",
|
|
69
|
+
"ciAutoConfirm": "CI environment detected - auto-confirming {{tool}}",
|
|
70
|
+
"selectPrompt": "Which AI tool will you use?",
|
|
71
|
+
"recommended": "Recommended - Full automation",
|
|
72
|
+
"tools": {
|
|
73
|
+
"claude": "Claude Code",
|
|
74
|
+
"cursor": "Cursor",
|
|
75
|
+
"copilot": "GitHub Copilot",
|
|
76
|
+
"generic": "Other (ChatGPT, Gemini, etc.)"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"info": {
|
|
80
|
+
"nestedEnforcement": "SpecWeave enforces a single source of truth:",
|
|
81
|
+
"nestedBullet1": "• Use the parent folder for all increments",
|
|
82
|
+
"nestedBullet2": "• Increments can span multiple subdirectories",
|
|
83
|
+
"nestedBullet3": "• See CLAUDE.md section \"Root-Level .specweave/ Folder\"",
|
|
84
|
+
"nestedToFix": "To fix:",
|
|
85
|
+
"suggestedPlugins": "💡 Suggested Plugins:",
|
|
86
|
+
"copiedFiles": "✓ Copied {{count}} command files",
|
|
87
|
+
"copiedAgents": "✓ Copied {{count}} agent directories",
|
|
88
|
+
"copiedSkills": "✓ Copied {{count}} skill directories",
|
|
89
|
+
"copiedHooks": "✓ Copied {{count}} hook files",
|
|
90
|
+
"pluginAutoSetupDetails": "Claude Code will auto-load SpecWeave marketplace when you trust this folder",
|
|
91
|
+
"manualInstallInstructions": "Run manually: /plugin install specweave",
|
|
92
|
+
"ciSkipPlugins": "CI environment detected - skipping plugin enablement (can configure manually later)"
|
|
93
|
+
},
|
|
94
|
+
"success": {
|
|
95
|
+
"pluginAutoSetup": "Plugin marketplace configured for automatic loading",
|
|
96
|
+
"pluginAutoInstall": "Slash commands available immediately (no restart needed!)"
|
|
97
|
+
},
|
|
98
|
+
"progress": {
|
|
99
|
+
"creatingProject": "Creating SpecWeave project...",
|
|
100
|
+
"detected": "Detected {{tool}}...",
|
|
101
|
+
"usingTool": "Using {{tool}}...",
|
|
102
|
+
"directoryCreated": "Directory structure created...",
|
|
103
|
+
"templatesCopied": "Base templates copied...",
|
|
104
|
+
"installingComponents": "Installing Claude Code components...",
|
|
105
|
+
"commandsInstalled": "Slash commands installed...",
|
|
106
|
+
"agentsInstalled": "Agents installed...",
|
|
107
|
+
"skillsInstalled": "Skills installed...",
|
|
108
|
+
"hooksInstalled": "Hooks installed...",
|
|
109
|
+
"generatingIndex": "Generating skills index...",
|
|
110
|
+
"indexGenerated": "Skills index generated...",
|
|
111
|
+
"installingAdapter": "Installing {{tool}} adapter...",
|
|
112
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
113
|
+
"detectingPlugins": "Detecting plugins...",
|
|
114
|
+
"detectedPlugins": "Detected {{count}} suggested plugins",
|
|
115
|
+
"enablingPlugins": "Enabling plugins...",
|
|
116
|
+
"enabledPlugin": "Enabled {{plugin}}",
|
|
117
|
+
"pluginsEnabled": "Plugins enabled"
|
|
118
|
+
},
|
|
119
|
+
"nextSteps": {
|
|
120
|
+
"header": "🎯 Next steps:",
|
|
121
|
+
"cd": "cd {{projectName}}",
|
|
122
|
+
"footer": "🚀 Ready to build with SpecWeave!",
|
|
123
|
+
"docsLink": "Documentation: https://spec-weave.com",
|
|
124
|
+
"githubLink": "GitHub: https://github.com/anton-abyzov/specweave",
|
|
125
|
+
"claude": {
|
|
126
|
+
"step1": "Open Claude Code in this directory",
|
|
127
|
+
"step2": "Install SpecWeave core plugin (REQUIRED):",
|
|
128
|
+
"installCore": "Run: /plugin install specweave",
|
|
129
|
+
"step3": "Optional: Install additional plugins as needed:",
|
|
130
|
+
"installGitHub": "/plugin install specweave-github",
|
|
131
|
+
"installFrontend": "/plugin install specweave-frontend",
|
|
132
|
+
"step4": "Start building:",
|
|
133
|
+
"example": "\"/specweave:increment 'user authentication'\"",
|
|
134
|
+
"autoActivate": "Skills and agents auto-activate based on context"
|
|
135
|
+
},
|
|
136
|
+
"cursor": {
|
|
137
|
+
"step1": "Open project in Cursor",
|
|
138
|
+
"step2": "Say: \"Create increment for [your feature]\"",
|
|
139
|
+
"guide": "Cursor will read .cursorrules and guide you",
|
|
140
|
+
"step3": "Use @ shortcuts:",
|
|
141
|
+
"shortcuts": "@increments, @docs, @strategy, @tests"
|
|
142
|
+
},
|
|
143
|
+
"copilot": {
|
|
144
|
+
"step1": "Open project in VS Code with Copilot",
|
|
145
|
+
"step2": "Copilot will read workspace instructions automatically",
|
|
146
|
+
"action": "Start creating increment folders and files",
|
|
147
|
+
"step3": "Use Copilot Chat for guidance:",
|
|
148
|
+
"example": "\"How do I create a spec.md?\""
|
|
149
|
+
},
|
|
150
|
+
"generic": {
|
|
151
|
+
"step1": "Read SPECWEAVE-MANUAL.md",
|
|
152
|
+
"step2": "Follow step-by-step instructions",
|
|
153
|
+
"compatibility": "Works with ANY AI tool (ChatGPT, Claude web, Gemini)"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"plugin": {
|
|
158
|
+
"list": {
|
|
159
|
+
"header": "📦 SpecWeave Plugins",
|
|
160
|
+
"enabledHeader": "✅ Enabled Plugins:",
|
|
161
|
+
"enabledNone": "(none)",
|
|
162
|
+
"errorLoading": "(error loading)",
|
|
163
|
+
"availableHeader": "📚 Available Plugins:",
|
|
164
|
+
"availableNone": "(all enabled)",
|
|
165
|
+
"suggestedHeader": "💡 Suggested Plugins (auto-detected):",
|
|
166
|
+
"enableHint": "Run `specweave plugin enable <name>` to enable a plugin",
|
|
167
|
+
"statsFormat": "Skills: {{skills}}, Agents: {{agents}}, Commands: {{commands}}",
|
|
168
|
+
"errorListing": "❌ Error listing plugins:"
|
|
169
|
+
},
|
|
170
|
+
"enable": {
|
|
171
|
+
"enablingPlugin": "🔌 Enabling plugin: {{name}}",
|
|
172
|
+
"alreadyEnabled": "⚠️ Plugin {{name}} is already enabled",
|
|
173
|
+
"useForce": "Use --force to reinstall",
|
|
174
|
+
"success": "✅ Plugin {{name}} enabled successfully!",
|
|
175
|
+
"installed": "Installed:",
|
|
176
|
+
"skills": "Skills: {{names}}",
|
|
177
|
+
"agents": "Agents: {{names}}",
|
|
178
|
+
"commands": "Commands: {{names}}",
|
|
179
|
+
"installedTo": "Plugin installed to: {{location}}",
|
|
180
|
+
"restartClaude": "⚠️ Restart Claude Code to activate the new plugin",
|
|
181
|
+
"errorEnabling": "❌ Error enabling plugin:"
|
|
182
|
+
},
|
|
183
|
+
"disable": {
|
|
184
|
+
"disablingPlugin": "🔌 Disabling plugin: {{name}}",
|
|
185
|
+
"notEnabled": "⚠️ Plugin {{name}} is not currently enabled",
|
|
186
|
+
"success": "✅ Plugin {{name}} disabled successfully!",
|
|
187
|
+
"restartClaude": "⚠️ Restart Claude Code to deactivate the plugin",
|
|
188
|
+
"errorDisabling": "❌ Error disabling plugin:"
|
|
189
|
+
},
|
|
190
|
+
"info": {
|
|
191
|
+
"header": "📋 Plugin Information: {{name}}",
|
|
192
|
+
"notFound": "❌ Plugin {{name}} not found",
|
|
193
|
+
"listHint": "Run `specweave plugin list --available` to see available plugins",
|
|
194
|
+
"name": "Name:",
|
|
195
|
+
"version": "Version:",
|
|
196
|
+
"description": "Description:",
|
|
197
|
+
"author": "Author:",
|
|
198
|
+
"license": "License:",
|
|
199
|
+
"coreVersion": "SpecWeave Core Version:",
|
|
200
|
+
"status": "Status:",
|
|
201
|
+
"statusEnabled": "✅ Enabled",
|
|
202
|
+
"statusDisabled": "⚪ Disabled",
|
|
203
|
+
"provides": "Provides:",
|
|
204
|
+
"skillsFormat": "Skills: {{skills}}",
|
|
205
|
+
"agentsFormat": "Agents: {{agents}}",
|
|
206
|
+
"commandsFormat": "Commands: {{commands}}",
|
|
207
|
+
"noneValue": "(none)",
|
|
208
|
+
"dependencies": "Dependencies:",
|
|
209
|
+
"autoDetect": "Auto-Detection Triggers:",
|
|
210
|
+
"autoDetectFiles": "Files: {{files}}",
|
|
211
|
+
"autoDetectPackages": "Packages: {{packages}}",
|
|
212
|
+
"autoDetectEnv": "Environment Variables: {{env}}",
|
|
213
|
+
"autoDetectGit": "Git Remote Pattern: {{pattern}}",
|
|
214
|
+
"credits": "Credits:",
|
|
215
|
+
"basedOn": "Based on: {{source}}",
|
|
216
|
+
"originalAuthor": "Original Author: {{author}}",
|
|
217
|
+
"contributors": "Contributors: {{contributors}}",
|
|
218
|
+
"errorGettingInfo": "❌ Error getting plugin info:"
|
|
219
|
+
},
|
|
220
|
+
"errors": {
|
|
221
|
+
"nameRequired": "❌ Plugin name required for {{command}} command",
|
|
222
|
+
"usageEnable": "Usage: specweave plugin enable <plugin-name>",
|
|
223
|
+
"usageDisable": "Usage: specweave plugin disable <plugin-name>",
|
|
224
|
+
"usageInfo": "Usage: specweave plugin info <plugin-name>",
|
|
225
|
+
"unknownAction": "❌ Unknown plugin action: {{action}}",
|
|
226
|
+
"validActions": "Valid actions: list, enable, disable, info"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"list": {
|
|
230
|
+
"header": "📋 SpecWeave Components",
|
|
231
|
+
"agentsHeader": "🤖 Agents:",
|
|
232
|
+
"skillsHeader": "✨ Skills:",
|
|
233
|
+
"availableFormat": "Available in SpecWeave: {{count}} {{type}}",
|
|
234
|
+
"agents": "agents",
|
|
235
|
+
"skills": "skills",
|
|
236
|
+
"noDescription": "No description",
|
|
237
|
+
"noAgents": "⚠️ No agents found in src/agents/",
|
|
238
|
+
"noSkills": "⚠️ No skills found in src/skills/",
|
|
239
|
+
"hintInstalled": "Run `specweave list --installed` to see installed components",
|
|
240
|
+
"hintInstall": "Run `specweave install <name>` to install a specific component",
|
|
241
|
+
"localInstallation": "📁 Local Installation (.claude/):",
|
|
242
|
+
"globalInstallation": "🌍 Global Installation (~/.claude/):",
|
|
243
|
+
"noComponentsInstalled": "⚠️ No components installed",
|
|
244
|
+
"installPrompt": "Run `specweave install` to install components"
|
|
245
|
+
},
|
|
246
|
+
"install": {
|
|
247
|
+
"header": "📦 SpecWeave Component Installation",
|
|
248
|
+
"notFound": "❌ Component \"{{name}}\" not found",
|
|
249
|
+
"listHint": "Run `specweave list` to see available components",
|
|
250
|
+
"complete": "✅ Installation complete!",
|
|
251
|
+
"installedTo": "Installed to: {{location}}",
|
|
252
|
+
"installingFormat": "Installing {{type}}: {{name}}...",
|
|
253
|
+
"installedFormat": "Installed {{type}}: {{name}}",
|
|
254
|
+
"failedFormat": "Failed to install {{type}}: {{name}}",
|
|
255
|
+
"noAgentsWarning": "⚠️ No agents found in src/agents/",
|
|
256
|
+
"noSkillsWarning": "⚠️ No skills found in src/skills/",
|
|
257
|
+
"installingCount": "📦 Installing {{count}} {{type}}...",
|
|
258
|
+
"agent": "agent",
|
|
259
|
+
"agents": "agents",
|
|
260
|
+
"skill": "skill",
|
|
261
|
+
"skills": "skills"
|
|
262
|
+
},
|
|
263
|
+
"increment": {
|
|
264
|
+
"creating": "📝 Creating increment: {name}",
|
|
265
|
+
"created": "✅ Increment {id} created successfully!",
|
|
266
|
+
"nextStepDo": "Next: Run /specweave.do to start implementation",
|
|
267
|
+
"errors": {
|
|
268
|
+
"incompleteFound": "Cannot create new increment! Previous increments incomplete"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"progress": {
|
|
272
|
+
"currentIncrement": "Current Increment: {id}",
|
|
273
|
+
"status": "Status: {status}",
|
|
274
|
+
"completion": "Completion: {percent}%"
|
|
275
|
+
},
|
|
276
|
+
"translate": {
|
|
277
|
+
"translating": "🌐 Translating content to {language}...",
|
|
278
|
+
"complete": "✅ Translation complete!"
|
|
279
|
+
},
|
|
280
|
+
"version": {
|
|
281
|
+
"current": "SpecWeave version: {version}"
|
|
282
|
+
},
|
|
283
|
+
"errors": {
|
|
284
|
+
"fileNotFound": "❌ File not found: {path}",
|
|
285
|
+
"invalidConfig": "❌ Invalid configuration: {error}"
|
|
286
|
+
}
|
|
287
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"init": {
|
|
3
|
+
"welcome": "🚀 Inicialización de SpecWeave",
|
|
4
|
+
"projectName": "Nombre del proyecto:",
|
|
5
|
+
"detectingTool": "Detectando herramienta de IA...",
|
|
6
|
+
"foundClaude": "✅ Claude Code encontrado",
|
|
7
|
+
"foundCursor": "✅ Cursor encontrado",
|
|
8
|
+
"foundCopilot": "✅ GitHub Copilot encontrado",
|
|
9
|
+
"noToolDetected": "No se detectó herramienta de IA, usando adaptador Generic",
|
|
10
|
+
"complete": "✨ ¡Inicialización completa!",
|
|
11
|
+
"errors": {
|
|
12
|
+
"invalidName": "El nombre del proyecto debe contener solo letras minúsculas, números y guiones",
|
|
13
|
+
"alreadyExists": "El directorio .specweave ya existe",
|
|
14
|
+
"cancelled": "❌ Inicialización cancelada"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"increment": {
|
|
18
|
+
"creating": "📝 Creando increment: {name}",
|
|
19
|
+
"created": "✅ ¡Increment {id} creado exitosamente!",
|
|
20
|
+
"nextStepDo": "Siguiente: Ejecuta /specweave.do para comenzar la implementación",
|
|
21
|
+
"errors": {
|
|
22
|
+
"incompleteFound": "¡No se puede crear un nuevo increment! Increments anteriores incompletos"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"progress": {
|
|
26
|
+
"currentIncrement": "Increment Actual: {id}",
|
|
27
|
+
"status": "Estado: {status}",
|
|
28
|
+
"completion": "Completado: {percent}%"
|
|
29
|
+
},
|
|
30
|
+
"translate": {
|
|
31
|
+
"translating": "🌐 Traduciendo contenido a {language}...",
|
|
32
|
+
"complete": "✅ ¡Traducción completa!"
|
|
33
|
+
},
|
|
34
|
+
"version": {
|
|
35
|
+
"current": "Versión de SpecWeave: {version}"
|
|
36
|
+
},
|
|
37
|
+
"errors": {
|
|
38
|
+
"fileNotFound": "❌ Archivo no encontrado: {path}",
|
|
39
|
+
"invalidConfig": "❌ Configuración inválida: {error}"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"init": {
|
|
3
|
+
"welcome": "🚀 SpecWeave Initialization",
|
|
4
|
+
"projectName": "Project name:",
|
|
5
|
+
"projectNamePrompt": "Project name (for templates):",
|
|
6
|
+
"projectNameDefault": "my-saas",
|
|
7
|
+
"detectingTool": "Detecting AI tool...",
|
|
8
|
+
"foundClaude": "✅ Found Claude Code",
|
|
9
|
+
"foundCursor": "✅ Found Cursor",
|
|
10
|
+
"foundCopilot": "✅ Found GitHub Copilot",
|
|
11
|
+
"noToolDetected": "No AI tool detected, using Generic adapter",
|
|
12
|
+
"complete": "✨ Initialization complete!",
|
|
13
|
+
"claudeNativeComplete": "✨ Claude Code native installation complete!",
|
|
14
|
+
"claudeNativeBenefits": "✅ Native skills, agents, hooks work out of the box",
|
|
15
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
16
|
+
"readyToBuild": "🚀 Ready to build with SpecWeave!",
|
|
17
|
+
"errors": {
|
|
18
|
+
"invalidName": "Project name must contain only lowercase letters, numbers, and hyphens",
|
|
19
|
+
"alreadyExists": ".specweave directory already exists",
|
|
20
|
+
"cancelled": "❌ Initialization cancelled",
|
|
21
|
+
"invalidLanguage": "❌ Invalid language: {{language}}",
|
|
22
|
+
"supportedLanguages": "Supported languages: {{languages}}",
|
|
23
|
+
"nestedNotSupported": "❌ Nested .specweave/ folders are NOT supported!",
|
|
24
|
+
"parentFound": "Found parent .specweave/ at:",
|
|
25
|
+
"projectCreationFailed": "Failed to create project",
|
|
26
|
+
"commandsCopyFailed": "❌ Commands copy failed: {{error}}",
|
|
27
|
+
"agentsCopyFailed": "❌ Agents copy failed: {{error}}",
|
|
28
|
+
"skillsCopyFailed": "❌ Skills copy failed: {{error}}",
|
|
29
|
+
"hooksCopyFailed": "❌ Hooks copy failed: {{error}}"
|
|
30
|
+
},
|
|
31
|
+
"warnings": {
|
|
32
|
+
"invalidDirName": "⚠️ Current directory name '{{dirName}}' contains invalid characters.",
|
|
33
|
+
"directoryNotEmpty": "⚠️ Current directory contains {{count}} file{{plural}}.",
|
|
34
|
+
"skillsIndexWarning": "⚠️ Warning: Could not generate skills index: {{error}}",
|
|
35
|
+
"skillsIndexNote": "Skills will still work, but manual indexing may be needed."
|
|
36
|
+
},
|
|
37
|
+
"prompts": {
|
|
38
|
+
"confirmInitInCurrent": "Initialize SpecWeave in current directory?",
|
|
39
|
+
"overwriteSpecweave": ".specweave directory already exists. Overwrite?",
|
|
40
|
+
"overwriteDirectory": "Directory {{projectName}} already exists. Overwrite?",
|
|
41
|
+
"enablePlugins": "Enable suggested plugins now?"
|
|
42
|
+
},
|
|
43
|
+
"info": {
|
|
44
|
+
"nestedEnforcement": "SpecWeave enforces a single source of truth:",
|
|
45
|
+
"nestedBullet1": "• Use the parent folder for all increments",
|
|
46
|
+
"nestedBullet2": "• Increments can span multiple subdirectories",
|
|
47
|
+
"nestedBullet3": "• See CLAUDE.md section \"Root-Level .specweave/ Folder\"",
|
|
48
|
+
"nestedToFix": "To fix:",
|
|
49
|
+
"suggestedPlugins": "💡 Suggested Plugins:",
|
|
50
|
+
"copiedFiles": "✓ Copied {{count}} command files",
|
|
51
|
+
"copiedAgents": "✓ Copied {{count}} agent directories",
|
|
52
|
+
"copiedSkills": "✓ Copied {{count}} skill directories",
|
|
53
|
+
"copiedHooks": "✓ Copied {{count}} hook files"
|
|
54
|
+
},
|
|
55
|
+
"progress": {
|
|
56
|
+
"creatingProject": "Creating SpecWeave project...",
|
|
57
|
+
"detected": "Detected {{tool}}...",
|
|
58
|
+
"usingTool": "Using {{tool}}...",
|
|
59
|
+
"directoryCreated": "Directory structure created...",
|
|
60
|
+
"templatesCopied": "Base templates copied...",
|
|
61
|
+
"installingComponents": "Installing Claude Code components...",
|
|
62
|
+
"commandsInstalled": "Slash commands installed...",
|
|
63
|
+
"agentsInstalled": "Agents installed...",
|
|
64
|
+
"skillsInstalled": "Skills installed...",
|
|
65
|
+
"hooksInstalled": "Hooks installed...",
|
|
66
|
+
"generatingIndex": "Generating skills index...",
|
|
67
|
+
"indexGenerated": "Skills index generated...",
|
|
68
|
+
"installingAdapter": "Installing {{tool}} adapter...",
|
|
69
|
+
"projectSuccess": "SpecWeave project created successfully!",
|
|
70
|
+
"detectingPlugins": "Detecting plugins...",
|
|
71
|
+
"detectedPlugins": "Detected {{count}} suggested plugins",
|
|
72
|
+
"enablingPlugins": "Enabling plugins...",
|
|
73
|
+
"enabledPlugin": "Enabled {{plugin}}",
|
|
74
|
+
"pluginsEnabled": "Plugins enabled"
|
|
75
|
+
},
|
|
76
|
+
"nextSteps": {
|
|
77
|
+
"header": "🎯 Next steps:",
|
|
78
|
+
"cd": "cd {{projectName}}",
|
|
79
|
+
"footer": "🚀 Ready to build with SpecWeave!",
|
|
80
|
+
"docsLink": "Documentation: https://spec-weave.com",
|
|
81
|
+
"githubLink": "GitHub: https://github.com/anton-abyzov/specweave"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"increment": {
|
|
85
|
+
"creating": "📝 Creating increment: {name}",
|
|
86
|
+
"created": "✅ Increment {id} created successfully!",
|
|
87
|
+
"nextStepDo": "Next: Run /specweave.do to start implementation",
|
|
88
|
+
"errors": {
|
|
89
|
+
"incompleteFound": "Cannot create new increment! Previous increments incomplete"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"progress": {
|
|
93
|
+
"currentIncrement": "Current Increment: {id}",
|
|
94
|
+
"status": "Status: {status}",
|
|
95
|
+
"completion": "Completion: {percent}%"
|
|
96
|
+
},
|
|
97
|
+
"translate": {
|
|
98
|
+
"translating": "🌐 Translating content to {language}...",
|
|
99
|
+
"complete": "✅ Translation complete!"
|
|
100
|
+
},
|
|
101
|
+
"version": {
|
|
102
|
+
"current": "SpecWeave version: {version}"
|
|
103
|
+
},
|
|
104
|
+
"errors": {
|
|
105
|
+
"fileNotFound": "❌ File not found: {path}",
|
|
106
|
+
"invalidConfig": "❌ Invalid configuration: {error}"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
File without changes
|