ai-engineering-starter-kit 0.4.0 → 0.5.0
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 +12 -1
- package/skills/ppp/SKILL.md +1 -1
- package/skills/ppp-cloud/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-engineering-starter-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Plan. Patch. Prove. Practical AI-assisted engineering workflows for IDE and cloud coding agents.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"type": "commonjs",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/bransbury/ai-engineering-starter-kit.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/bransbury/ai-engineering-starter-kit#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/bransbury/ai-engineering-starter-kit/issues"
|
|
15
|
+
},
|
|
8
16
|
"bin": {
|
|
9
17
|
"ai-engineering-starter-kit": "bin/ai-engineering-starter-kit.js",
|
|
10
18
|
"aesk": "bin/ai-engineering-starter-kit.js"
|
|
@@ -18,5 +26,8 @@
|
|
|
18
26
|
],
|
|
19
27
|
"engines": {
|
|
20
28
|
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"provenance": true
|
|
21
32
|
}
|
|
22
33
|
}
|
package/skills/ppp/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ppp
|
|
3
|
-
version: 0.
|
|
3
|
+
version: 0.5.0
|
|
4
4
|
description: "Plan. Patch. Prove. A lightweight interactive workflow for normal engineering tasks: inspect code, clarify only blocking questions, plan the smallest safe complete change, prove it, patch in small loops, review production readiness, and prepare a PR."
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ppp-cloud
|
|
3
|
-
version: 0.
|
|
3
|
+
version: 0.5.0
|
|
4
4
|
description: "Plan. Patch. Prove for autonomous cloud agents. Use for clear, bounded engineering tasks where the agent should inspect code, plan, prove, patch, validate, review, and open a draft PR or stop with a useful blocker."
|
|
5
5
|
---
|
|
6
6
|
|