@contentrain/skills 0.5.0 → 0.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentrain/skills",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "AI agent skills for Contentrain — workflow procedures, framework integration guides",
|
|
6
6
|
"type": "module",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"tsdown": "^0.21.0",
|
|
62
62
|
"typescript": "^5.7.0",
|
|
63
63
|
"vitest": "^3.0.0",
|
|
64
|
-
"@contentrain/mcp": "1.5.
|
|
64
|
+
"@contentrain/mcp": "1.5.1"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "tsdown src/index.ts --format esm,cjs --dts",
|
|
@@ -150,7 +150,7 @@ contentrain_submit # Push (always review mode)
|
|
|
150
150
|
- Branch naming: `cr/{operation}/{model}/{timestamp}` (locale included when applicable)
|
|
151
151
|
- Do not create branches manually. MCP handles Git transactions
|
|
152
152
|
- Developer's working tree is never mutated during MCP operations (no stash, no checkout, no merge on the developer's tree)
|
|
153
|
-
- context.json is committed
|
|
153
|
+
- context.json is never committed on feature branches — it is regenerated on the `contentrain` branch after merge
|
|
154
154
|
- `auto-merge` mode: feature branch merged into `contentrain`, baseBranch advanced via update-ref, `.contentrain/` files selectively synced to developer's working tree (dirty files skipped with warning)
|
|
155
155
|
- `review` mode: feature branch pushed to remote by `contentrain_submit`
|
|
156
156
|
|
|
@@ -79,7 +79,7 @@ The `contentrain` branch is the **single source of truth** for content state:
|
|
|
79
79
|
- Created automatically at `contentrain_init`.
|
|
80
80
|
- All content writes happen on feature branches forked from `contentrain`.
|
|
81
81
|
- The `contentrain` branch is **protected from deletion**.
|
|
82
|
-
- context.json is committed
|
|
82
|
+
- context.json is never committed on feature branches — it is regenerated on the `contentrain` branch after merge.
|
|
83
83
|
|
|
84
84
|
### 3.2 Worktree-Based Transactions
|
|
85
85
|
|