I Am AlexNet - Autonomous product builder that orchestrates AI models through a 16-phase SDLC pipeline
npm install imalexnet




Agentic CLI that builds complete products and marketing foundation by orchestrating Claude Code and Codex.
Website: imalexnet.com
``bash`
npm install -g imalexnet
That's it! Now you can run alexnet from anywhere.
If you want to contribute or modify the code:
`bashClone the repository
git clone https://github.com/yungookim/imalexnet.git
cd imalexnet
Prerequisites
Before using I Am AlexNet, you need:
1. Claude Code CLI
`bash
npm install -g @anthropic-ai/claude-code
claude auth login
`2. OpenAI Codex CLI
`bash
npm install -g @openai/codex
codex auth login
`> Note: I Am AlexNet will automatically install required skills for both Claude Code and Codex during runtime. See Automatic Skill Installation for details.
Usage
`bash
Start a new project (interactive wizard)
alexnetResume an interrupted project
alexnet --resumeCheck project status
alexnet --statusUse medium models (balanced cost/quality)
alexnet --model-tier mediumUse light models (fastest, most economical)
alexnet --model-tier lightSpecify tech stack
alexnet --stack "nextjs,supabase,stripe"Disable git integration
alexnet --no-git
`Options
| Option | Description |
|--------|-------------|
|
-r, --resume | Resume from last checkpoint |
| -s, --status | Show current status and exit |
| -v, --verbose | Detailed logging |
| -m, --monitor | tmux dashboard mode |
| --model-tier | "light", "medium", or "heavy" (default: heavy) |
| --stack | Tech stack override |
| --deploy | Auto-deploy (vercel, netlify) |
| --no-git | Disable git integration |The 16-Phase Pipeline
$3
1. Planning - User stories and roadmap (Codex → Claude review)
2. Analysis - Technical requirements (Codex → Claude review)
3. Design - Architecture and prototype (Claude → Codex review)
4. Implementation - Full source code (Claude → Codex review)
5. Testing - Comprehensive test suite ⚠️ Perfection required
6. Code Review - Security audit ⚠️ Perfection required
7. Maintenance - Documentation
8. Steve Jobs Review 🍎 - Product excellence check$3
9. Landing Page - High-converting HTML/CSS/JS
10. SEO Optimization - 10+ pages, meta tags, sitemap
11. Demo Video - Remotion-based explainer
12. ICP & Messaging - Target personas and copy
13. Google Ads - 100 ad variations CSV
14. CRO Review 📈 - Conversion optimization$3
15. Final Orchestrator Review 🎯 - Quality gate
16. Final Dashboard 🏁 - Completion summaryOutput Structure
`
./
├── .imalexnet/ # State and logs
├── project/ # SDLC artifacts
│ ├── planning/
│ ├── analysis/
│ ├── design/
│ ├── tests/
│ ├── reviews/
│ ├── docs/
│ └── dashboard/
├── src/ # Generated source code
├── public/ # Landing page + SEO pages
└── gtm/ # GTM artifacts
├── seo/
├── video/
├── messaging/
├── ads/
└── reviews/
`Cross-Model Review
Every phase (except Testing and Code Review) uses cross-model review:
- If Claude executes → Codex reviews
- If Codex executes → Claude reviews
- Maximum 5 iterations per phase
- Testing and Code Review iterate until perfect
Model Tiers
| Tier | Coding Model | Review Model | Best For |
|------|--------------|--------------|----------|
| heavy (default) | Claude Opus | GPT-5.2-Codex | Production apps, complex projects |
| medium | Claude Sonnet | GPT-5.1-Codex-mini | Standard projects, balanced cost |
| light | Claude Haiku | GPT-5.1-Codex-mini | Quick prototypes, simple apps, budget-conscious |
Automatic Skill Installation
I Am AlexNet automatically installs and configures skills for both Claude Code and Codex during runtime. This happens transparently during project initialization.
What gets installed:
- ~40 specialized skills for each model
- Skills are persisted in
.claude/settings.json and .codex/settings.json
- Subsequent runs reuse installed skills (no reinstallation needed)Why skills are needed:
Skills enable the AI models to follow structured workflows for planning, testing, code review, and other phases. They ensure consistent, high-quality output across the 16-phase pipeline.
Installed skills:
| Skill | Claude Code | Codex | Reason |
|-------|-------------|-------|--------|
| commit-push-pr | ✓ | ✓ | Both commit code |
| remove-ai-code-slop | ✓ | - | Claude writes implementation |
| frontend-design | ✓ | - | Design + Landing page |
| verification-before-completion | ✓ | ✓ | Quality gates |
| test-driven-development | - | ✓ | Testing phase |
| systematic-debugging | ✓ | ✓ | Bug fixing |
| remotion-best-practices | ✓ | - | Video phase only |
| page-cro, form-cro, etc. | ✓ | - | GTM phases |
| programmatic-seo | ✓ | - | SEO phase |
| paid-ads | ✓ | - | Ads phase |
> First run note: The initial project may take slightly longer as skills are installed. This is a one-time setup per environment.
Development
`bash
Run in development mode
bun run devType check
bun run typecheckBuild
bun run buildBuild and link locally (creates alexnet-dev command)
bun run dev:link
``MIT