@scanton/phase2s 0.26.0 → 1.0.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/README.md +1 -1
- package/package.json +20 -5
package/README.md
CHANGED
|
@@ -228,7 +228,7 @@ phase2s skills --json # machine-readable for scripts
|
|
|
228
228
|
- [x] Codex CLI provider (ChatGPT subscription, no API key required)
|
|
229
229
|
- [x] 29 built-in skills across 6 categories
|
|
230
230
|
- [x] File sandbox: tools reject paths outside project directory, including symlink escapes
|
|
231
|
-
- [x]
|
|
231
|
+
- [x] 399 tests covering all tools, core modules, agent integration, and goal executor
|
|
232
232
|
- [x] CI: runs `npm test` on every push and PR
|
|
233
233
|
- [x] OpenAI API provider with live tool calling
|
|
234
234
|
- [x] Anthropic API provider — Claude 3.5 Sonnet and family
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scanton/phase2s",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "AI
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI coding assistant with 29 built-in skills, ChatGPT subscription support, and autonomous spec execution",
|
|
5
|
+
"author": "Scott Canton",
|
|
6
|
+
"homepage": "https://github.com/scanton/phase-2-s",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/scanton/phase-2-s.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/scanton/phase-2-s/issues"
|
|
13
|
+
},
|
|
5
14
|
"type": "module",
|
|
6
15
|
"files": [
|
|
7
16
|
"dist/",
|
|
@@ -36,8 +45,14 @@
|
|
|
36
45
|
"ai",
|
|
37
46
|
"codex",
|
|
38
47
|
"openai",
|
|
48
|
+
"anthropic",
|
|
49
|
+
"claude",
|
|
50
|
+
"chatgpt",
|
|
39
51
|
"cli",
|
|
40
|
-
"agent"
|
|
52
|
+
"agent",
|
|
53
|
+
"mcp",
|
|
54
|
+
"coding-assistant",
|
|
55
|
+
"dark-factory"
|
|
41
56
|
],
|
|
42
57
|
"license": "MIT",
|
|
43
58
|
"dependencies": {
|
|
@@ -52,9 +67,9 @@
|
|
|
52
67
|
"zod": "^3.23.0"
|
|
53
68
|
},
|
|
54
69
|
"devDependencies": {
|
|
55
|
-
"@actions/core": "^
|
|
70
|
+
"@actions/core": "^3.0.0",
|
|
56
71
|
"@actions/exec": "^1.1.1",
|
|
57
|
-
"@actions/github": "^
|
|
72
|
+
"@actions/github": "^9.0.0",
|
|
58
73
|
"@types/node": "^22.9.0",
|
|
59
74
|
"@vercel/ncc": "^0.38.4",
|
|
60
75
|
"playwright": ">=1.40.0",
|