agent-toolbox 0.2.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 ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "agent-toolbox",
3
+ "version": "0.2.0",
4
+ "description": "Cross-tool registry for agent skills, MCP servers, and hooks with provenance tracking and automated security vetting.",
5
+ "keywords": [
6
+ "opencode",
7
+ "claude-code",
8
+ "codex",
9
+ "antigravity",
10
+ "gemini-cli",
11
+ "cursor",
12
+ "windsurf",
13
+ "github-copilot",
14
+ "agent-skills",
15
+ "ai-coding",
16
+ "llm-tools",
17
+ "ai-agents",
18
+ "agentic-engineering",
19
+ "autonomous-coding",
20
+ "mcp",
21
+ "ai-developer-tools",
22
+ "ai-pair-programming",
23
+ "vibe-coding",
24
+ "skill",
25
+ "skills"
26
+ ],
27
+ "homepage": "https://github.com/yunseo-kim/agent-toolbox#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/yunseo-kim/agent-toolbox/issues"
30
+ },
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/yunseo-kim/agent-toolbox.git"
34
+ },
35
+ "license": "SUL-1.0",
36
+ "author": "Yunseo Kim <dev@yunseo.kim> (https://about.yunseo.kim/)",
37
+ "type": "module",
38
+ "bin": {
39
+ "agent-toolbox": "dist/cli/launcher.js"
40
+ },
41
+ "scripts": {
42
+ "prepare": "lefthook install",
43
+ "validate": "bun run src/cli/validate.ts",
44
+ "build:index": "bun run src/cli/build-index.ts",
45
+ "build:claude-code": "bun run src/cli/build-target.ts -- --target claude-code",
46
+ "build:opencode": "bun run src/cli/build-target.ts -- --target opencode",
47
+ "build:cursor": "bun run src/cli/build-target.ts -- --target cursor",
48
+ "build:codex": "bun run src/cli/build-target.ts -- --target codex",
49
+ "build:gemini": "bun run src/cli/build-target.ts -- --target gemini",
50
+ "build:all": "bun run src/cli/build-target.ts -- --target all",
51
+ "install:target": "bun run src/cli/install.ts",
52
+ "start": "bun run src/cli/main.ts",
53
+ "test": "bun test",
54
+ "test:unit": "bun test tests/unit/",
55
+ "test:integration": "bun test tests/integration/",
56
+ "test:matrix": "bun test tests/matrix/",
57
+ "typecheck": "tsc --noEmit",
58
+ "lint": "eslint src/ tests/",
59
+ "lint:fix": "eslint src/ tests/ --fix",
60
+ "format": "prettier --write --ignore-unknown .",
61
+ "format:check": "prettier --check --ignore-unknown .",
62
+ "release": "bun run scripts/release.ts",
63
+ "tag": "bun run scripts/tag.ts",
64
+ "changelog": "git cliff -o CHANGELOG.md",
65
+ "build:cli": "bun run scripts/build-cli.ts",
66
+ "prepublishOnly": "bun run build:cli"
67
+ },
68
+ "dependencies": {
69
+ "@toon-format/toon": "^2.1.0",
70
+ "yaml": "^2.8.2",
71
+ "zod": "^4.0.0"
72
+ },
73
+ "devDependencies": {
74
+ "@eslint/js": "^10.0.1",
75
+ "@types/bun": "latest",
76
+ "bumpp": "^10.4.0",
77
+ "eslint": "^10.0.3",
78
+ "eslint-config-prettier": "^10.1.8",
79
+ "lefthook": "^2.1.3",
80
+ "prettier": "^3.8.1",
81
+ "typescript": "^5.7",
82
+ "typescript-eslint": "^8.56.1"
83
+ },
84
+ "publishConfig": {
85
+ "access": "public",
86
+ "registry": "https://registry.npmjs.org/"
87
+ },
88
+ "files": [
89
+ "dist/cli/",
90
+ "LICENSE.md",
91
+ "README.md",
92
+ "CHANGELOG.md"
93
+ ],
94
+ "engines": {
95
+ "node": ">=18",
96
+ "bun": ">=1.0"
97
+ }
98
+ }