appsec-agent 0.0.7 → 0.0.8
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 +2 -2
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -35,10 +35,10 @@ A TypeScript package that provides AI-powered agents for Application Security (A
|
|
|
35
35
|
- Anthropic API key
|
|
36
36
|
|
|
37
37
|
### Step 1: Install Claude Code
|
|
38
|
-
Our agent toolkit is built on top of Claude Agent SDK. And the Claude Agent SDK is built on top of Claude Code. So in order to install our toolkit, you would need to start with Claude Code. You may want to install it in the global user space:
|
|
38
|
+
Our agent toolkit is built on top of Claude Agent SDK (v0.1.58). And the Claude Agent SDK is built on top of Claude Code. So in order to install our toolkit, you would need to start with Claude Code. You may want to install it in the global user space:
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
$ npm install -g @anthropic-ai/claude-code
|
|
41
|
+
$ npm install -g @anthropic-ai/claude-code@2.0.58
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
### Step 2: Install Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appsec-agent",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "TypeScript package for AppSec AI Agent management",
|
|
5
5
|
"author": "Sam Li",
|
|
6
6
|
"license": "MIT",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"typescript"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@anthropic-ai/claude-agent-sdk": "^0.1.
|
|
35
|
+
"@anthropic-ai/claude-agent-sdk": "^0.1.58",
|
|
36
36
|
"yaml": "^2.4.0",
|
|
37
37
|
"commander": "^11.1.0",
|
|
38
38
|
"fs-extra": "^11.2.0"
|
|
@@ -46,6 +46,9 @@
|
|
|
46
46
|
"typescript": "^5.3.3",
|
|
47
47
|
"ts-node": "^10.9.2"
|
|
48
48
|
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@anthropic-ai/claude-code": "2.0.58"
|
|
51
|
+
},
|
|
49
52
|
"engines": {
|
|
50
53
|
"node": ">=18.0.0"
|
|
51
54
|
}
|