autoforge-ai 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/.claude/commands/check-code.md +32 -0
- package/.claude/commands/checkpoint.md +40 -0
- package/.claude/commands/create-spec.md +613 -0
- package/.claude/commands/expand-project.md +234 -0
- package/.claude/commands/gsd-to-autoforge-spec.md +10 -0
- package/.claude/commands/review-pr.md +75 -0
- package/.claude/templates/app_spec.template.txt +331 -0
- package/.claude/templates/coding_prompt.template.md +265 -0
- package/.claude/templates/initializer_prompt.template.md +354 -0
- package/.claude/templates/testing_prompt.template.md +146 -0
- package/.env.example +64 -0
- package/LICENSE.md +676 -0
- package/README.md +423 -0
- package/agent.py +444 -0
- package/api/__init__.py +10 -0
- package/api/database.py +536 -0
- package/api/dependency_resolver.py +449 -0
- package/api/migration.py +156 -0
- package/auth.py +83 -0
- package/autoforge_paths.py +315 -0
- package/autonomous_agent_demo.py +293 -0
- package/bin/autoforge.js +3 -0
- package/client.py +607 -0
- package/env_constants.py +27 -0
- package/examples/OPTIMIZE_CONFIG.md +230 -0
- package/examples/README.md +531 -0
- package/examples/org_config.yaml +172 -0
- package/examples/project_allowed_commands.yaml +139 -0
- package/lib/cli.js +791 -0
- package/mcp_server/__init__.py +1 -0
- package/mcp_server/feature_mcp.py +988 -0
- package/package.json +53 -0
- package/parallel_orchestrator.py +1800 -0
- package/progress.py +247 -0
- package/prompts.py +427 -0
- package/pyproject.toml +17 -0
- package/rate_limit_utils.py +132 -0
- package/registry.py +614 -0
- package/requirements-prod.txt +14 -0
- package/security.py +959 -0
- package/server/__init__.py +17 -0
- package/server/main.py +261 -0
- package/server/routers/__init__.py +32 -0
- package/server/routers/agent.py +177 -0
- package/server/routers/assistant_chat.py +327 -0
- package/server/routers/devserver.py +309 -0
- package/server/routers/expand_project.py +239 -0
- package/server/routers/features.py +746 -0
- package/server/routers/filesystem.py +514 -0
- package/server/routers/projects.py +524 -0
- package/server/routers/schedules.py +356 -0
- package/server/routers/settings.py +127 -0
- package/server/routers/spec_creation.py +357 -0
- package/server/routers/terminal.py +453 -0
- package/server/schemas.py +593 -0
- package/server/services/__init__.py +36 -0
- package/server/services/assistant_chat_session.py +496 -0
- package/server/services/assistant_database.py +304 -0
- package/server/services/chat_constants.py +57 -0
- package/server/services/dev_server_manager.py +557 -0
- package/server/services/expand_chat_session.py +399 -0
- package/server/services/process_manager.py +657 -0
- package/server/services/project_config.py +475 -0
- package/server/services/scheduler_service.py +683 -0
- package/server/services/spec_chat_session.py +502 -0
- package/server/services/terminal_manager.py +756 -0
- package/server/utils/__init__.py +1 -0
- package/server/utils/process_utils.py +134 -0
- package/server/utils/project_helpers.py +32 -0
- package/server/utils/validation.py +54 -0
- package/server/websocket.py +903 -0
- package/start.py +456 -0
- package/ui/dist/assets/index-8W_wmZzz.js +168 -0
- package/ui/dist/assets/index-B47Ubhox.css +1 -0
- package/ui/dist/assets/vendor-flow-CVNK-_lx.js +7 -0
- package/ui/dist/assets/vendor-query-BUABzP5o.js +1 -0
- package/ui/dist/assets/vendor-radix-DTNNCg2d.js +45 -0
- package/ui/dist/assets/vendor-react-qkC6yhPU.js +1 -0
- package/ui/dist/assets/vendor-utils-COeKbHgx.js +2 -0
- package/ui/dist/assets/vendor-xterm-DP_gxef0.js +16 -0
- package/ui/dist/index.html +23 -0
- package/ui/dist/ollama.png +0 -0
- package/ui/dist/vite.svg +6 -0
- package/ui/package.json +57 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>AutoForge</title>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link href="https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=DM+Sans:wght@400;500;700&family=Space+Mono:wght@400;700&family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
11
|
+
<script type="module" crossorigin src="/assets/index-8W_wmZzz.js"></script>
|
|
12
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-react-qkC6yhPU.js">
|
|
13
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-query-BUABzP5o.js">
|
|
14
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-utils-COeKbHgx.js">
|
|
15
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-flow-CVNK-_lx.js">
|
|
16
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-radix-DTNNCg2d.js">
|
|
17
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-xterm-DP_gxef0.js">
|
|
18
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B47Ubhox.css">
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
<div id="root"></div>
|
|
22
|
+
</body>
|
|
23
|
+
</html>
|
|
Binary file
|
package/ui/dist/vite.svg
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
2
|
+
<rect x="10" y="10" width="80" height="80" fill="#ffd60a" stroke="#1a1a1a" stroke-width="6"/>
|
|
3
|
+
<rect x="25" y="30" width="50" height="10" fill="#1a1a1a"/>
|
|
4
|
+
<rect x="25" y="50" width="35" height="10" fill="#70e000"/>
|
|
5
|
+
<rect x="25" y="70" width="20" height="10" fill="#00b4d8"/>
|
|
6
|
+
</svg>
|
package/ui/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autoforge-ui",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc -b && vite build",
|
|
9
|
+
"lint": "eslint .",
|
|
10
|
+
"preview": "vite preview",
|
|
11
|
+
"test:e2e": "playwright test",
|
|
12
|
+
"test:e2e:ui": "playwright test --ui"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
16
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
17
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
18
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
19
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
20
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
21
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
22
|
+
"@tanstack/react-query": "^5.72.0",
|
|
23
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
24
|
+
"@xterm/addon-web-links": "^0.12.0",
|
|
25
|
+
"@xterm/xterm": "^6.0.0",
|
|
26
|
+
"@xyflow/react": "^12.10.0",
|
|
27
|
+
"autoforge-ai": "file:..",
|
|
28
|
+
"canvas-confetti": "^1.9.4",
|
|
29
|
+
"class-variance-authority": "^0.7.1",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"dagre": "^0.8.5",
|
|
32
|
+
"lucide-react": "^0.475.0",
|
|
33
|
+
"react": "^19.0.0",
|
|
34
|
+
"react-dom": "^19.0.0",
|
|
35
|
+
"tailwind-merge": "^3.4.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@eslint/js": "^9.19.0",
|
|
39
|
+
"@playwright/test": "^1.57.0",
|
|
40
|
+
"@tailwindcss/vite": "^4.1.0",
|
|
41
|
+
"@types/canvas-confetti": "^1.9.0",
|
|
42
|
+
"@types/dagre": "^0.7.53",
|
|
43
|
+
"@types/node": "^22.12.0",
|
|
44
|
+
"@types/react": "^19.0.0",
|
|
45
|
+
"@types/react-dom": "^19.0.0",
|
|
46
|
+
"@vitejs/plugin-react": "^4.4.0",
|
|
47
|
+
"eslint": "^9.19.0",
|
|
48
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
49
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
50
|
+
"globals": "^15.14.0",
|
|
51
|
+
"tailwindcss": "^4.1.0",
|
|
52
|
+
"tw-animate-css": "^1.4.0",
|
|
53
|
+
"typescript": "~5.7.3",
|
|
54
|
+
"typescript-eslint": "^8.23.0",
|
|
55
|
+
"vite": "^7.3.0"
|
|
56
|
+
}
|
|
57
|
+
}
|