selfish-pipeline 1.2.0 → 1.2.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.
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Automated pipeline for Claude Code — spec → plan → tasks → implement → review → clean",
|
|
9
|
-
"version": "1.2.
|
|
9
|
+
"version": "1.2.1"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "selfish",
|
|
14
14
|
"source": "./",
|
|
15
15
|
"description": "Automated pipeline for Claude Code. Automates the full development cycle: spec → plan → tasks → implement → review → clean.",
|
|
16
|
-
"version": "1.2.
|
|
16
|
+
"version": "1.2.1",
|
|
17
17
|
"category": "automation",
|
|
18
18
|
"tags": ["pipeline", "automation", "spec", "plan", "implement", "review", "critic-loop"]
|
|
19
19
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "selfish",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Automated pipeline for Claude Code. Automates the full development cycle: spec → plan → tasks → implement → review → clean.",
|
|
5
5
|
"author": { "name": "jhlee0409", "email": "relee6203@gmail.com" },
|
|
6
6
|
"homepage": "https://github.com/jhlee0409/selfish-pipeline",
|
|
7
7
|
"repository": "https://github.com/jhlee0409/selfish-pipeline",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"keywords": ["pipeline", "automation", "spec", "plan", "implement", "review", "critic-loop"],
|
|
10
|
-
"commands": "./commands/"
|
|
10
|
+
"commands": "./commands/",
|
|
11
|
+
"hooks": "./hooks/hooks.json"
|
|
11
12
|
}
|
package/commands/init.md
CHANGED
|
@@ -155,6 +155,8 @@ Based on choice:
|
|
|
155
155
|
|
|
156
156
|
#### Step 4. Inject SELFISH Block
|
|
157
157
|
|
|
158
|
+
**Version resolution**: Read `${CLAUDE_PLUGIN_ROOT}/package.json` and extract the `"version"` field. Use this value as `{PLUGIN_VERSION}` in the template below.
|
|
159
|
+
|
|
158
160
|
Add the following block at the **very end** of the file (later-positioned directives have higher priority).
|
|
159
161
|
|
|
160
162
|
Replace existing SELFISH block if present, otherwise append.
|
|
@@ -162,7 +164,7 @@ If legacy block (`## Selfish Auto-Trigger Rules` etc.) exists, remove it then ap
|
|
|
162
164
|
|
|
163
165
|
```markdown
|
|
164
166
|
<!-- SELFISH:START -->
|
|
165
|
-
<!-- SELFISH:VERSION:
|
|
167
|
+
<!-- SELFISH:VERSION:{PLUGIN_VERSION} -->
|
|
166
168
|
<selfish-pipeline>
|
|
167
169
|
IMPORTANT: For requests matching the selfish skill routing table below, always invoke the corresponding skill via the Skill tool. Do not substitute with other agents or tools.
|
|
168
170
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "selfish-pipeline",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Claude Code plugin that automates the full dev cycle — spec, plan, tasks, implement, review, clean. 18 commands, 15 hooks, 5 presets.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"selfish-pipeline": "./bin/cli.mjs"
|