@shawnstack/quickforge 1.1.0 → 1.2.1
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 +1 -1
- package/bin/quickforge.mjs +72 -7
- package/dist/assets/{anthropic-By-wpU1w.js → anthropic-DLvtwHL2.js} +2 -2
- package/dist/assets/{azure-openai-responses-C8spS__i.js → azure-openai-responses-D68z7hLN.js} +1 -1
- package/dist/assets/css-utils-rkE68RDy.js +1 -0
- package/dist/assets/{google-DiIcyajo.js → google-B_sSaRBM.js} +1 -1
- package/dist/assets/{google-gemini-cli-BXZFGMXD.js → google-gemini-cli-CYqGXjGi.js} +1 -1
- package/dist/assets/google-shared-XhYUKiGZ.js +11 -0
- package/dist/assets/{google-vertex-D93MV5Cx.js → google-vertex-DSMuB4YB.js} +1 -1
- package/dist/assets/icons-BsZ9PlYY.js +1 -0
- package/dist/assets/index-BqFfVQJM.css +3 -0
- package/dist/assets/index-DoraECXN.js +3187 -0
- package/dist/assets/lit-vendor-1dsGB-Iy.js +2 -0
- package/dist/assets/{mistral-BAJNGYqd.js → mistral-BZngRB4x.js} +2 -2
- package/dist/assets/{openai-codex-responses-BHHCy65K.js → openai-codex-responses-Niu7xDYK.js} +1 -1
- package/dist/assets/openai-completions-B2bhb9k0.js +5 -0
- package/dist/assets/{openai-responses-CP9-AyAD.js → openai-responses-CDYDv8yL.js} +1 -1
- package/dist/assets/{openai-responses-shared-_z7sua8J.js → openai-responses-shared-BIKPTpEQ.js} +1 -1
- package/dist/assets/react-vendor-Ds3ovY0w.js +9 -0
- package/dist/assets/rolldown-runtime-CkqCuyE9.js +1 -0
- package/dist/index.html +7 -3
- package/package.json +14 -13
- package/server/agent-manager.mjs +1053 -0
- package/server/conversation-compaction.mjs +302 -0
- package/server/custom-commands.mjs +344 -0
- package/server/index.mjs +322 -32
- package/server/project-config.mjs +80 -31
- package/server/reasoning-cache.mjs +51 -0
- package/server/restart-supervisor.mjs +38 -0
- package/server/routes/agent.mjs +323 -0
- package/server/routes/backup.mjs +250 -0
- package/server/routes/instructions.mjs +6 -17
- package/server/routes/project.mjs +46 -10
- package/server/routes/scheduled-tasks.mjs +424 -0
- package/server/routes/shared-conversation.mjs +404 -0
- package/server/routes/shares.mjs +84 -0
- package/server/routes/skills.mjs +145 -0
- package/server/routes/static.mjs +4 -3
- package/server/routes/storage.mjs +58 -10
- package/server/routes/system.mjs +35 -0
- package/server/routes/tools.mjs +53 -2
- package/server/session-utils.mjs +102 -0
- package/server/share-store.mjs +468 -0
- package/server/skills.mjs +539 -0
- package/server/storage.mjs +247 -6
- package/server/system-prompt.mjs +67 -0
- package/server/tools/definitions.mjs +120 -0
- package/server/tools/index.mjs +167 -46
- package/server/utils/logger.mjs +34 -0
- package/server/utils/network.mjs +38 -0
- package/server/utils/platform.mjs +30 -0
- package/server/utils/response.mjs +8 -1
- package/skills/ai-context-package/SKILL.md +104 -0
- package/skills/ai-context-package/skill.json +9 -0
- package/skills/code-review/SKILL.md +23 -0
- package/skills/code-review/skill.json +9 -0
- package/skills/frontend-react/SKILL.md +22 -0
- package/skills/frontend-react/skill.json +9 -0
- package/skills/quickforge-project/SKILL.md +22 -0
- package/skills/quickforge-project/skill.json +9 -0
- package/dist/assets/chunk-62oNxeRG.js +0 -1
- package/dist/assets/confirm-dialog-4mZt9XEq.js +0 -1
- package/dist/assets/google-shared-CXUHW-9O.js +0 -11
- package/dist/assets/index-Bq6VHkyY.js +0 -3048
- package/dist/assets/index-D7uXa1RT.css +0 -3
- package/dist/assets/openai-completions-BtZAvOiJ.js +0 -5
- package/dist/assets/prompt-dialog-BGMKszUz.js +0 -1
- /package/dist/assets/{github-copilot-headers-C0toI16e.js → github-copilot-headers-CrI0CIJ7.js} +0 -0
- /package/dist/assets/{hash-fDQBJsbb.js → hash-Bt1aVMQ3.js} +0 -0
- /package/dist/assets/{headers-Drkm68SQ.js → headers-5EYI0_pl.js} +0 -0
- /package/dist/assets/{openai-CuiHR4mv.js → openai-Cn7eGqwa.js} +0 -0
- /package/dist/assets/{transform-messages-BFwlToJ0.js → transform-messages-CV4kCtBB.js} +0 -0
package/dist/index.html
CHANGED
|
@@ -5,9 +5,13 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>速构 QuickForge</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="modulepreload" crossorigin href="/assets/
|
|
10
|
-
<link rel="
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-DoraECXN.js"></script>
|
|
9
|
+
<link rel="modulepreload" crossorigin href="/assets/rolldown-runtime-CkqCuyE9.js">
|
|
10
|
+
<link rel="modulepreload" crossorigin href="/assets/lit-vendor-1dsGB-Iy.js">
|
|
11
|
+
<link rel="modulepreload" crossorigin href="/assets/css-utils-rkE68RDy.js">
|
|
12
|
+
<link rel="modulepreload" crossorigin href="/assets/icons-BsZ9PlYY.js">
|
|
13
|
+
<link rel="modulepreload" crossorigin href="/assets/react-vendor-Ds3ovY0w.js">
|
|
14
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BqFfVQJM.css">
|
|
11
15
|
</head>
|
|
12
16
|
<body>
|
|
13
17
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shawnstack/quickforge",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "AI chat application with YOLO-mode local workspace tools. React + Vite + Tailwind CSS frontend, local Node.js storage server.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"bin",
|
|
37
37
|
"server",
|
|
38
|
+
"skills",
|
|
38
39
|
"dist",
|
|
39
40
|
"README.md",
|
|
40
41
|
"LICENSE",
|
|
@@ -49,30 +50,30 @@
|
|
|
49
50
|
"preview": "node server/index.mjs"
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
52
|
-
"@mariozechner/mini-lit": "^0.2.1",
|
|
53
53
|
"@mariozechner/pi-agent-core": "^0.70.5",
|
|
54
|
-
"@mariozechner/pi-ai": "^0.70.5"
|
|
55
|
-
"@mariozechner/pi-web-ui": "^0.70.5",
|
|
56
|
-
"@tailwindcss/vite": "^4.2.4",
|
|
57
|
-
"class-variance-authority": "^0.7.1",
|
|
58
|
-
"clsx": "^2.1.1",
|
|
59
|
-
"lit": "^3.3.2",
|
|
60
|
-
"lucide-react": "^1.11.0",
|
|
61
|
-
"react": "^19.2.5",
|
|
62
|
-
"react-dom": "^19.2.5",
|
|
63
|
-
"tailwind-merge": "^3.5.0",
|
|
64
|
-
"tailwindcss": "^4.2.4"
|
|
54
|
+
"@mariozechner/pi-ai": "^0.70.5"
|
|
65
55
|
},
|
|
66
56
|
"devDependencies": {
|
|
67
57
|
"@eslint/js": "^10.0.1",
|
|
58
|
+
"@mariozechner/mini-lit": "^0.2.1",
|
|
59
|
+
"@mariozechner/pi-web-ui": "^0.70.5",
|
|
60
|
+
"@tailwindcss/vite": "^4.2.4",
|
|
68
61
|
"@types/node": "^24.12.2",
|
|
69
62
|
"@types/react": "^19.2.14",
|
|
70
63
|
"@types/react-dom": "^19.2.3",
|
|
71
64
|
"@vitejs/plugin-react": "^6.0.1",
|
|
65
|
+
"class-variance-authority": "^0.7.1",
|
|
66
|
+
"clsx": "^2.1.1",
|
|
72
67
|
"eslint": "^10.2.1",
|
|
73
68
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
74
69
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
75
70
|
"globals": "^17.5.0",
|
|
71
|
+
"lit": "^3.3.2",
|
|
72
|
+
"lucide-react": "^1.11.0",
|
|
73
|
+
"react": "^19.2.5",
|
|
74
|
+
"react-dom": "^19.2.5",
|
|
75
|
+
"tailwind-merge": "^3.5.0",
|
|
76
|
+
"tailwindcss": "^4.2.4",
|
|
76
77
|
"typescript": "~6.0.2",
|
|
77
78
|
"typescript-eslint": "^8.58.2",
|
|
78
79
|
"vite": "^8.0.10"
|