Views
No views yet
board_meeting.py:
execute_cto.py: generates a build prompt and runs Claude Code to create product outputexecute_cmo.py: generates/publishes marketing artifactsexecute_coo.py: generates execution_plan.md and risk_register.mdexecute_ceo.py: generates investor_pitch.md and executive_summary.mdmemory_store.py: stores summaries of recent runs in outputs/memory_store.jsonrun_all.py: full autonomous pipeline (board meeting + CTO + CMO + COO + CEO)app.py: Streamlit frontend (embedded UI) that talks to api_server.pystart.sh: convenience launcher for API + Streamlit togetherdashboard/app.py: terminal-style board meeting flowningen_env.py: RL-style experiment runner and reward logging1project-ningen/
2├── board_meeting.py
3├── api_server.py
4├── app.py
5├── run_all.py
6├── execute_cto.py
7├── execute_cmo.py
8├── execute_coo.py
9├── execute_ceo.py
10├── memory_store.py
11├── ningen_env.py
12├── start.sh
13├── dashboard/
14│ └── app.py
15├── outputs/
16└── requirements.txt1python3 -m venv venv
2source venv/bin/activate
3pip install -r requirements.txt.envOPENAI_API_KEY=your_openai_key1RESEND_API_KEY=your_resend_key
2RESEND_FROM_EMAIL=you@domain.com
3RESEND_SUBSCRIBER_EMAILS=user1@example.com,user2@example.com
4DEVTO_API_KEY=your_devto_key
5DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/...npm install -g @anthropic-ai/claude-codepython3 run_all.py "AI-powered invoicing assistant for freelancers"python3 dashboard/app.py./start.shstreamlit run app.py1python3 execute_cto.py
2python3 execute_cmo.py
3python3 execute_coo.py
4python3 execute_ceo.pypython3 ningen_env.pyoutputs/:outputs/<ProductName>/<ProductName>_requirements.jsonoutputs/<ProductName>/<ProductName>_briefings.jsonoutputs/ root, including:index.htmlcto_claude_prompt.txtcold_email.mddevto_article.mddiscord_post.mdreddit_post.mdexecution_plan.mdrisk_register.mdinvestor_pitch.mdexecutive_summary.mdmemory_store.jsonepisode_log.jsonrl_experiment.jsonoutputs/.