ironweave 1.1.3 → 1.1.4

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.
@@ -0,0 +1,13 @@
1
+ ---
2
+ description: Ironweave skills framework — orchestration, requirements, architecture, TDD, and quality gates
3
+ alwaysApply: true
4
+ enabled: true
5
+ ---
6
+
7
+ # Ironweave
8
+
9
+ You have access to the Ironweave skills library — a complete software development workflow with built-in quality gates.
10
+
11
+ The **orchestrator** skill (`skills/orchestrator/SKILL.md`) is the main entry point. For any development task, start by reading it. The orchestrator automatically senses context, scores difficulty, selects the right route, and runs Plan → Execute → Validate → Deliver with quality gates.
12
+
13
+ All skills are in `skills/`, each with a `SKILL.md` containing instructions.
package/bin/cli.js CHANGED
@@ -16,7 +16,7 @@ Usage:
16
16
 
17
17
  Options:
18
18
  --agent <name> Only install config for specific agent
19
- (claude, copilot, cursor, windsurf, cline, trae, codex, gemini, all)
19
+ (claude, copilot, cursor, windsurf, cline, trae, codebuddy, codex, gemini, all)
20
20
  Default: all
21
21
  --lang <lang> Language for skills: zh (Chinese, default) or en (English)
22
22
  --skills-only Only copy skills/, skip agent config files
@@ -83,6 +83,9 @@ if (command === 'init') {
83
83
  trae: [
84
84
  { src: '.trae/rules', dst: '.trae/rules', dir: true }
85
85
  ],
86
+ codebuddy: [
87
+ { src: '.codebuddy/rules', dst: '.codebuddy/rules', dir: true }
88
+ ],
86
89
  codex: [
87
90
  { src: 'AGENTS.md', dst: 'AGENTS.md' }
88
91
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ironweave",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Agentic skills framework for AI coding agents — orchestrated workflows with adaptive routing, quality gates, and 17 composable skills.",
5
5
  "keywords": [
6
6
  "agent-skills",
@@ -42,6 +42,7 @@
42
42
  ".windsurf/",
43
43
  ".clinerules/",
44
44
  ".trae/",
45
+ ".codebuddy/",
45
46
  ".github/",
46
47
  "README.md",
47
48
  "README_CN.md",