Your AI-powered personal operating system, built on Claude Code.
Memory · Skills · Routines · Dashboard · All running 24/7
Four layers. One system.
Persistent, linked markdown vault that Claude reads and writes. Research, decisions, people, daily notes — all connected with wiki-links and browseable in Obsidian.
memory/
├── inbox/
├── daily-notes/
├── research/
├── people/
├── decisions/
└── LEARNINGS.md
Modular SKILL.md files that tell Claude how to execute tasks. Organized by category, discoverable by convention.
PRODUCTIVITY
RESEARCH
CONTENT
BUSINESS
DEV
ROUTINES
Scheduled skills that run headlessly via cron or Task Scheduler. Morning briefs, inbox triage, repo health checks — fully unattended.
Next.js dashboard with token tracking, activity charts, routine status, skill runner, and vault pulse. Monitor everything from one screen.
Four layers, each independent but interconnected.
MEMORY
Obsidian-compatible markdown vault
SKILLS
Modular SKILL.md task definitions
AUTOMATIONS
Scheduled headless routines
DASHBOARD
Real-time Next.js monitoring
agentic-os/ ├── memory/ # Obsidian vault (persistent memory) │ ├── inbox/ # Routine outputs land here │ ├── daily-notes/ # Daily logs │ ├── research/ # Research notes │ ├── people/ # Contact notes │ ├── decisions/ # Decision logs │ └── LEARNINGS.md # Running improvement log │ ├── skills/ # Modular skill definitions │ ├── productivity/ # Email, calendar, maintenance │ ├── research/ # Web research, video analysis, trending │ ├── content/ # Social media, writing, ideation │ ├── business/ # Proposals, outreach, client management │ ├── dev/ # Git workflows, code review, documentation │ └── routines/ # Scheduled automation skills │ ├── automations/ # Routine runner + schedules │ ├── routines.json # Routine definitions │ ├── run-routine.ts # Standalone executor │ └── send-email.ts # SMTP notifications │ ├── dashboard/ # Next.js real-time dashboard │ ├── app/ # Pages + API routes │ ├── components/ # UI components │ └── lib/ # Data layer │ ├── context/ # User context files │ ├── user-preferences.md │ ├── active-projects.md │ └── brand.md │ └── CLAUDE.md # Master instructions
Up and running in three steps.
git clone https://github.com/jakeefr/claude-agentic-os.git cd claude-agentic-os cd dashboard && npm install && cd .. cp .env.example .env # Edit CLAUDE.md — replace [PLACEHOLDER] values
# Skills live in skills/{category}/{skill-name}/SKILL.md
# Example categories included:
# productivity/ research/ content/
# business/ dev/ routines/
# Customize the templates or build your own# Run the dashboard cd dashboard && npm run dev # Run routines manually npx tsx automations/run-routine.ts morning-intel-brief # Or schedule via cron / Task Scheduler