mini-codex 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 +21 -0
- package/README.md +231 -0
- package/bin/mini-codex +7 -0
- package/dist/auth/base.d.ts +13 -0
- package/dist/auth/base.js +1 -0
- package/dist/auth/openai-oauth.d.ts +7 -0
- package/dist/auth/openai-oauth.js +218 -0
- package/dist/cli-args.d.ts +10 -0
- package/dist/cli-args.js +20 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +78 -0
- package/dist/loop.d.ts +15 -0
- package/dist/loop.js +221 -0
- package/dist/memory.d.ts +7 -0
- package/dist/memory.js +84 -0
- package/dist/model.d.ts +5 -0
- package/dist/model.js +69 -0
- package/dist/prompt.d.ts +3 -0
- package/dist/prompt.js +91 -0
- package/dist/providers/base.d.ts +5 -0
- package/dist/providers/base.js +1 -0
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.js +13 -0
- package/dist/providers/openai.d.ts +9 -0
- package/dist/providers/openai.js +278 -0
- package/dist/providers/test-fixture.d.ts +8 -0
- package/dist/providers/test-fixture.js +36 -0
- package/dist/runtime.d.ts +9 -0
- package/dist/runtime.js +99 -0
- package/dist/skills.d.ts +6 -0
- package/dist/skills.js +37 -0
- package/dist/subagents.d.ts +16 -0
- package/dist/subagents.js +196 -0
- package/dist/terminal.d.ts +29 -0
- package/dist/terminal.js +242 -0
- package/dist/tools.d.ts +2 -0
- package/dist/tools.js +136 -0
- package/dist/types.d.ts +78 -0
- package/dist/types.js +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mini-codex",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A Bun-based coding agent for a single local workspace",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "JJ Wang",
|
|
8
|
+
"homepage": "https://github.com/wjjnova/mini-codex",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/wjjnova/mini-codex/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/wjjnova/mini-codex.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"agent",
|
|
18
|
+
"ai",
|
|
19
|
+
"bun",
|
|
20
|
+
"cli",
|
|
21
|
+
"codex",
|
|
22
|
+
"developer-tools",
|
|
23
|
+
"openai",
|
|
24
|
+
"typescript",
|
|
25
|
+
"workspace"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"packageManager": "bun@1.2.21",
|
|
29
|
+
"files": [
|
|
30
|
+
"bin",
|
|
31
|
+
"dist",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
35
|
+
"bin": {
|
|
36
|
+
"mini-codex": "./bin/mini-codex"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "bun run src/cli.ts",
|
|
40
|
+
"build": "bunx tsc -p tsconfig.json",
|
|
41
|
+
"prepack": "bun run build",
|
|
42
|
+
"test": "bun test",
|
|
43
|
+
"test:e2e": "bun test test/e2e-cli.test.ts",
|
|
44
|
+
"start": "bun run dist/cli.js"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"bun": ">=1.2.21"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"openai": "^5.20.2",
|
|
51
|
+
"zod": "^3.25.76"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^24.5.2",
|
|
55
|
+
"typescript": "^5.9.2"
|
|
56
|
+
}
|
|
57
|
+
}
|