specsmd 0.0.0-dev.44 → 0.0.0-dev.46
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.
|
@@ -71,17 +71,7 @@ Initialize a new FIRE project by detecting workspace type and setting up standar
|
|
|
71
71
|
</output>
|
|
72
72
|
</step>
|
|
73
73
|
|
|
74
|
-
<step n="4" title="
|
|
75
|
-
<ask>
|
|
76
|
-
Default execution mode for work items?
|
|
77
|
-
|
|
78
|
-
[1] Autopilot - AI executes directly (fast, for experienced teams)
|
|
79
|
-
[2] Confirm (Recommended) - AI shows plan, you approve
|
|
80
|
-
[3] Validate - Design review + plan approval (for critical work)
|
|
81
|
-
</ask>
|
|
82
|
-
</step>
|
|
83
|
-
|
|
84
|
-
<step n="5" title="Create Structure">
|
|
74
|
+
<step n="4" title="Create Structure">
|
|
85
75
|
<action>Create .specs-fire/ directory</action>
|
|
86
76
|
<action>Create .specs-fire/intents/</action>
|
|
87
77
|
<action>Create .specs-fire/runs/</action>
|
|
@@ -91,7 +81,7 @@ Initialize a new FIRE project by detecting workspace type and setting up standar
|
|
|
91
81
|
<action>Generate .specs-fire/standards/coding-standards.md</action>
|
|
92
82
|
</step>
|
|
93
83
|
|
|
94
|
-
<step n="
|
|
84
|
+
<step n="5" title="Complete">
|
|
95
85
|
<output>
|
|
96
86
|
FIRE initialized!
|
|
97
87
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.46",
|
|
4
4
|
"description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|
|
@@ -54,66 +54,16 @@
|
|
|
54
54
|
"node": ">=14.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@semantic-release/git": "^10.0.1",
|
|
58
57
|
"@types/js-yaml": "^4.0.9",
|
|
59
58
|
"@types/node": "^24.10.2",
|
|
60
59
|
"glob": "^13.0.0",
|
|
61
60
|
"markdownlint": "^0.40.0",
|
|
62
61
|
"markdownlint-cli": "^0.46.0",
|
|
63
62
|
"remark-parse": "^11.0.0",
|
|
64
|
-
"semantic-release": "^25.0.2",
|
|
65
63
|
"typescript": "^5.9.3",
|
|
66
64
|
"unified": "^11.0.5",
|
|
67
65
|
"unist-util-visit": "^5.0.0",
|
|
68
66
|
"vitest": "^4.0.15",
|
|
69
67
|
"yaml": "^2.8.2"
|
|
70
|
-
},
|
|
71
|
-
"release": {
|
|
72
|
-
"branches": [
|
|
73
|
-
"main"
|
|
74
|
-
],
|
|
75
|
-
"plugins": [
|
|
76
|
-
[
|
|
77
|
-
"@semantic-release/commit-analyzer",
|
|
78
|
-
{
|
|
79
|
-
"releaseRules": [
|
|
80
|
-
{
|
|
81
|
-
"breaking": true,
|
|
82
|
-
"release": "minor"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"type": "feat",
|
|
86
|
-
"release": "minor"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"type": "fix",
|
|
90
|
-
"release": "patch"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"type": "perf",
|
|
94
|
-
"release": "patch"
|
|
95
|
-
}
|
|
96
|
-
]
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"@semantic-release/release-notes-generator",
|
|
100
|
-
"@semantic-release/npm",
|
|
101
|
-
[
|
|
102
|
-
"@semantic-release/github",
|
|
103
|
-
{
|
|
104
|
-
"successComment": false,
|
|
105
|
-
"failComment": false
|
|
106
|
-
}
|
|
107
|
-
],
|
|
108
|
-
[
|
|
109
|
-
"@semantic-release/git",
|
|
110
|
-
{
|
|
111
|
-
"assets": [
|
|
112
|
-
"package.json"
|
|
113
|
-
],
|
|
114
|
-
"message": "chore(release): ${nextRelease.version} [skip ci]"
|
|
115
|
-
}
|
|
116
|
-
]
|
|
117
|
-
]
|
|
118
68
|
}
|
|
119
69
|
}
|