-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "continuous-improvement",
"version": "3.2.0",
"description": "The 7 Laws of AI Agent Discipline — stop your agent from skipping steps, guessing, and declaring 'done' without verifying. Auto-leveling instinct learning with MCP server, GitHub Action transcript linter, and starter instinct packs for Claude Code, Cursor, Codex, Gemini CLI.",
"keywords": [
"claude-code",
"claude-code-skill",
"ai-agent",
"agent-skill",
"ai-discipline",
"mulahazah",
"instinct",
"hooks",
"mcp",
"mcp-server",
"cursor",
"codex",
"gemini-cli",
"github-action",
"transcript-linter"
],
"author": "naimkatiman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/naimkatiman/continuous-improvement.git"
},
"homepage": "https://github.com/naimkatiman/continuous-improvement#readme",
"bugs": {
"url": "https://github.com/naimkatiman/continuous-improvement/issues"
},
"bin": {
"continuous-improvement": "bin/install.mjs",
"ci-lint-transcript": "bin/lint-transcript.mjs",
"ci": "bin/unified-cli.mjs"
},
"scripts": {
"build": "tsc -p tsconfig.json && node bin/generate-plugin-manifests.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "node -e \"const fs=require('node:fs'); for (const dir of ['bin','test','lib']) { if (!fs.existsSync(dir)) continue; for (const file of fs.readdirSync(dir)) { if (file.endsWith('.mjs')) fs.rmSync(dir + '/' + file, { force: true }); } }\"",
"test": "npm run build && node --test test/*.test.mjs",
"lint": "node bin/lint-transcript.mjs --help",
"verify:generated": "npm run build && git diff --exit-code -- .agents .claude-plugin bin test lib plugins"
},
"files": [
".agents/",
".claude-plugin/",
"SKILL.md",
"QUICKSTART.md",
"CHANGELOG.md",
"README.md",
"llms.txt",
"action.yml",
"bin/",
"lib/",
"hooks/",
"commands/",
"skills/",
"templates/",
"plugins/",
"instinct-packs/"
],
"type": "module",
"devDependencies": {
"@types/node": "^24.6.0",
"typescript": "^5.9.3"
}
}