mancode 0.1.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/LICENSE +661 -0
- package/README.md +562 -0
- package/README.zh-CN.md +525 -0
- package/dist/chunk-57PJQDQ3.js +10 -0
- package/dist/chunk-57PJQDQ3.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +5276 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/logo.png +0 -0
- package/package.json +78 -0
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/logo.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mancode",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI coding agent workflow harness. Five modes from practice to playoffs: stop over-engineering, reuse project context, and add multi-agent code review.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"author": "",
|
|
8
|
+
"homepage": "https://github.com/whitelonng/mancode",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/whitelonng/mancode.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/whitelonng/mancode/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"claude-code",
|
|
18
|
+
"ai-agent",
|
|
19
|
+
"ai-coding-agent",
|
|
20
|
+
"harness",
|
|
21
|
+
"cli",
|
|
22
|
+
"yagni",
|
|
23
|
+
"workflow",
|
|
24
|
+
"agent-workflow",
|
|
25
|
+
"code-review",
|
|
26
|
+
"ai-code-review",
|
|
27
|
+
"code-quality",
|
|
28
|
+
"technical-debt",
|
|
29
|
+
"multi-agent",
|
|
30
|
+
"subagents",
|
|
31
|
+
"design-tokens",
|
|
32
|
+
"claude-code-plugin",
|
|
33
|
+
"claude-code-hooks",
|
|
34
|
+
"claude-code-skills",
|
|
35
|
+
"cursor",
|
|
36
|
+
"codex-cli"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=20"
|
|
40
|
+
},
|
|
41
|
+
"bin": {
|
|
42
|
+
"mancode": "./dist/cli.js"
|
|
43
|
+
},
|
|
44
|
+
"exports": {
|
|
45
|
+
".": "./dist/index.js"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"dist",
|
|
52
|
+
"README.md",
|
|
53
|
+
"logo.png",
|
|
54
|
+
"LICENSE"
|
|
55
|
+
],
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"dev": "tsup --watch",
|
|
59
|
+
"test": "vitest run",
|
|
60
|
+
"test:watch": "vitest",
|
|
61
|
+
"test:coverage": "vitest run --coverage",
|
|
62
|
+
"lint": "biome check src tests",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"format": "biome format --write src tests",
|
|
65
|
+
"prepublishOnly": "npm run lint && npm run typecheck && npm run build && npm test"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"commander": "^12.1.0"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@biomejs/biome": "^1.9.4",
|
|
72
|
+
"@types/node": "^22.10.0",
|
|
73
|
+
"@vitest/coverage-v8": "^3.2.7",
|
|
74
|
+
"tsup": "^8.3.5",
|
|
75
|
+
"typescript": "^5.7.2",
|
|
76
|
+
"vitest": "^3.2.6"
|
|
77
|
+
}
|
|
78
|
+
}
|