You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+42-12Lines changed: 42 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,36 @@
1
+
> **[!TIP]**
2
+
>
3
+
> **Learn more about Agentic Coding!**
4
+
>
5
+
> Automaker itself was built by a group of engineers using AI and agentic coding techniques to build features faster than ever. By leveraging tools like Cursor IDE and Claude Code CLI, the team orchestrated AI agents to implement complex functionality in days instead of weeks.
6
+
>
7
+
> **Learn how:** Master these same techniques and workflows in the [Agentic Jumpstart course](https://agenticjumpstart.com/).
8
+
1
9
# Automaker
2
10
3
-
Automaker is an autonomous AI development studio that helps you build software faster using AI-powered agents. It provides a visual Kanban board interface to manage features, automatically assigns AI agents to implement them, and tracks progress through an intuitive workflow from backlog to verified completion.
11
+
**Stop typing code. Start directing AI agents.**
12
+
13
+
Automaker is an autonomous AI development studio that transforms how you build software. Instead of manually writing every line of code, you describe features on a Kanban board and watch as AI agents powered by Claude Code automatically implement them.
14
+
15
+
## What Makes Automaker Different?
16
+
17
+
Traditional development tools help you write code. Automaker helps you **orchestrate AI agents** to build entire features autonomously. Think of it as having a team of AI developers working for you—you define what needs to be built, and Automaker handles the implementation.
18
+
19
+
### The Workflow
20
+
21
+
1.**Add Features** - Describe features you want built (with text, images, or screenshots)
22
+
2.**Move to "In Progress"** - Automaker automatically assigns an AI agent to implement the feature
23
+
3.**Watch It Build** - See real-time progress as the agent writes code, runs tests, and makes changes
24
+
4.**Review & Verify** - Review the changes, run tests, and approve when ready
25
+
5.**Ship Faster** - Build entire applications in days, not weeks
26
+
27
+
### Powered by Claude Code
28
+
29
+
Automaker leverages the [Claude Agent SDK](https://docs.anthropic.com/en/docs/claude-code) to give AI agents full access to your codebase. Agents can read files, write code, execute commands, run tests, and make git commits—all while working in isolated git worktrees to keep your main branch safe.
30
+
31
+
### Why This Matters
32
+
33
+
The future of software development is **agentic coding**—where developers become architects directing AI agents rather than manual coders. Automaker puts this future in your hands today, letting you experience what it's like to build software 10x faster with AI agents handling the implementation while you focus on architecture and business logic.
4
34
5
35
---
6
36
@@ -36,20 +66,22 @@ cd automaker
36
66
# 2. Install dependencies
37
67
npm install
38
68
39
-
# 3. Get your Claude Code OAuth token
40
-
claude setup-token
41
-
# ⚠️ This prints your token - don't share your screen!
42
-
43
-
# 4. Set the token and run
44
-
export CLAUDE_CODE_OAUTH_TOKEN="sk-ant-oat01-..."
45
-
npm run dev:electron
69
+
# 3. Run Automaker (pick your mode)
70
+
npm run dev
71
+
# Then choose your run mode when prompted, or use specific commands below
46
72
```
47
73
48
74
## How to Run
49
75
50
-
### Development Modes
76
+
### Development Mode
51
77
52
-
Automaker can be run in several modes:
78
+
Start Automaker in development mode:
79
+
80
+
```bash
81
+
npm run dev
82
+
```
83
+
84
+
This will prompt you to choose your run mode, or you can specify a mode directly:
0 commit comments