@korl3one/ccode 2.0.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/README.md +329 -0
- package/dist/ai/claude.d.ts +10 -0
- package/dist/ai/claude.js +34 -0
- package/dist/ai/manager.d.ts +17 -0
- package/dist/ai/manager.js +41 -0
- package/dist/ai/ollama.d.ts +10 -0
- package/dist/ai/ollama.js +27 -0
- package/dist/ai/provider.d.ts +12 -0
- package/dist/ai/provider.js +1 -0
- package/dist/cli/brand.d.ts +27 -0
- package/dist/cli/brand.js +90 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +737 -0
- package/dist/cli/watcher.d.ts +31 -0
- package/dist/cli/watcher.js +90 -0
- package/dist/core/context.d.ts +26 -0
- package/dist/core/context.js +45 -0
- package/dist/core/prompt-builder.d.ts +38 -0
- package/dist/core/prompt-builder.js +250 -0
- package/dist/core/tasks.d.ts +35 -0
- package/dist/core/tasks.js +59 -0
- package/dist/utils/files.d.ts +12 -0
- package/dist/utils/files.js +34 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@korl3one/ccode",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "CLI de contexto persistente para desarrollo asistido por IA. Genera documentacion, arquitectura, reglas y tareas verificables.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ccode": "./dist/cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"dev": "tsc --watch",
|
|
13
|
+
"start": "node dist/cli/index.js",
|
|
14
|
+
"test": "vitest run",
|
|
15
|
+
"test:watch": "vitest",
|
|
16
|
+
"prepublishOnly": "npm run build && npm test"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ai",
|
|
20
|
+
"cli",
|
|
21
|
+
"context",
|
|
22
|
+
"development",
|
|
23
|
+
"assistant",
|
|
24
|
+
"typescript",
|
|
25
|
+
"project-management",
|
|
26
|
+
"documentation",
|
|
27
|
+
"architecture",
|
|
28
|
+
"tasks",
|
|
29
|
+
"claude",
|
|
30
|
+
"ollama",
|
|
31
|
+
"llm",
|
|
32
|
+
"persistent-context"
|
|
33
|
+
],
|
|
34
|
+
"author": "Johannes Moreno <korl3one>",
|
|
35
|
+
"license": "ISC",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/iDevelop25/ccode.git"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/iDevelop25/ccode#readme",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/iDevelop25/ccode/issues"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18.0.0"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"README.md"
|
|
50
|
+
],
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"axios": "^1.13.6",
|
|
56
|
+
"chalk": "^5.6.2",
|
|
57
|
+
"commander": "^14.0.3",
|
|
58
|
+
"fs-extra": "^11.3.4",
|
|
59
|
+
"inquirer": "^13.3.0",
|
|
60
|
+
"ora": "^8.2.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/fs-extra": "^11.0.4",
|
|
64
|
+
"@types/node": "^25.4.0",
|
|
65
|
+
"typescript": "^5.9.3",
|
|
66
|
+
"vitest": "^4.1.0"
|
|
67
|
+
}
|
|
68
|
+
}
|