-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "claude-smart",
"version": "0.2.49",
"description": "Self-improving Claude Code, Codex, and OpenCode plugin that turns corrections into Preferences, Project-specific skills, and Shared skills",
"keywords": [
"claude",
"claude-code",
"claude-code-plugin",
"codex",
"codex-plugin",
"opencode",
"opencode-plugin",
"memory",
"agent-memory",
"plugin",
"reflexio",
"self-improvement",
"self-improving-agents",
"skills",
"learning"
],
"homepage": "https://github.com/ReflexioAI/claude-smart#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ReflexioAI/claude-smart.git"
},
"bugs": {
"url": "https://github.com/ReflexioAI/claude-smart/issues"
},
"license": "Apache-2.0",
"author": "Yi Lu",
"type": "commonjs",
"oc-plugin": [
"server"
],
"exports": {
"./server": {
"import": "./plugin/opencode/dist/server.mjs"
}
},
"scripts": {
"build:opencode": "tsc -p plugin/opencode/tsconfig.json",
"prepack": "npm run gen:marketplace && npm run build:opencode",
"gen:marketplace": "node scripts/generate-marketplace.js"
},
"bin": {
"claude-smart": "bin/claude-smart.js"
},
"files": [
"bin",
"scripts/setup-claude-smart.sh",
".agents/plugins/marketplace.json",
".claude-plugin/marketplace.json",
"plugin",
"!plugin/**/__pycache__",
"!plugin/**/*.py[cod]",
"!plugin/**/.pytest_cache",
"!plugin/**/.ruff_cache",
"!plugin/**/.mypy_cache",
"!plugin/**/.venv",
"!plugin/**/node_modules",
"!plugin/**/.next/cache",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.9.0",
"opencode": ">=1.17.0"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.3"
}
}