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.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * mancode 版本号。
3
+ *
4
+ * 单一来源:package.json 的 version 字段。
5
+ * 运行时通过 createRequire 读取,避免双源头同步问题。
6
+ */
7
+ declare const VERSION: string;
8
+
9
+ export { VERSION };
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ import {
2
+ VERSION
3
+ } from "./chunk-57PJQDQ3.js";
4
+ export {
5
+ VERSION
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -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
+ }