Full-stack inner development operating system built on Next.js 16 + Prisma 7 + PostgreSQL + OpenAI + Clerk. Generates personalized daily mental training tasks, collects reflection, updates user state, and provides internal reward feedback. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
1.3 KiB
Markdown
29 lines
1.3 KiB
Markdown
# Inner OS — Claude Code Configuration
|
|
|
|
## Project overview
|
|
Inner OS v1 is an AI-driven inner development operating system. Next.js monolith + Prisma + PostgreSQL + OpenAI. Generates one personalized daily mental training task, explains why it's chosen, collects reflection, updates user state, and provides internal (non-competitive) reward feedback.
|
|
|
|
## Skill routing
|
|
|
|
When the user's request matches an available skill, invoke it via the Skill tool. When in doubt, invoke the skill.
|
|
|
|
Key routing rules:
|
|
- Product ideas/brainstorming → invoke /office-hours
|
|
- Strategy/scope → invoke /plan-ceo-review
|
|
- Architecture → invoke /plan-eng-review
|
|
- Design system/plan review → invoke /design-consultation or /plan-design-review
|
|
- Full review pipeline → invoke /autoplan
|
|
- Bugs/errors → invoke /investigate
|
|
- QA/testing site behavior → invoke /qa or /qa-only
|
|
- Code review/diff check → invoke /review
|
|
- Visual polish → invoke /design-review
|
|
- Ship/deploy/PR → invoke /ship or /land-and-deploy
|
|
- Save progress → invoke /context-save
|
|
- Resume context → invoke /context-restore
|
|
|
|
## Design System
|
|
Always read DESIGN.md before making any visual or UI decisions.
|
|
All font choices, colors, spacing, and aesthetic direction are defined there.
|
|
Do not deviate without explicit user approval.
|
|
In QA mode, flag any code that doesn't match DESIGN.md.
|