AGENTICOS

Your AI-powered personal operating system, built on Claude Code.

Memory · Skills · Routines · Dashboard · All running 24/7

AGENTICOS
IDLE
+
CLAUDE CODE
VAULT
DAILY NOTE
RUNS
INBOX
SKILLS
5-HOUR WINDOWRESETS · 2 PM
12.4K / 75K3 SESSIONS
WEEKLY WINDOWRESETS · MON
245K / 500K18 SESSIONS
ROUTINES · TODAY$0.42 TODAY
5 / 75 / 7 complete
CUMULATIVE ACTIVITY · 30D87 TOTAL
INTEGRATIONS
GMAIL
GOOGLE CALENDAR
GITHUB
SKILLS · 32 LOADED

FEATURES

Four layers. One system.

MEMORYOBSIDIAN VAULT

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

SKILL FLEET32 LOADED

Modular SKILL.md files that tell Claude how to execute tasks. Organized by category, discoverable by convention.

PRODUCTIVITY

GmailCalendarVault CleanupMorning BriefAdd Event

RESEARCH

Deep ResearchYT PipelineYT SearchGitHub TrendingKB QueryCompetitor Analysis

CONTENT

OutlinesIdeationX GrowthContent CascadeShort-formCarousel

BUSINESS

Proposal GeneratorProject BriefStatus UpdateCold Outreach

DEV

GitHubCode ReviewCommit SummaryREADME Generator

ROUTINES

Morning BriefInbox TriageContent PipelineDaily WrapRepo HealthLead Scanner
ROUTINESAUTOMATED

Scheduled skills that run headlessly via cron or Task Scheduler. Morning briefs, inbox triage, repo health checks — fully unattended.

ROUTINES · TODAY5 / 7
Morning Intel Brief7:00 AMDONE
Inbox Triage8:00 AMDONE
Content Pipeline12:00 PMDONE
Daily Wrap6:00 PMPENDING
DASHBOARDREAL-TIME

Next.js dashboard with token tracking, activity charts, routine status, skill runner, and vault pulse. Monitor everything from one screen.

ACTIVITY · 15D

ARCHITECTURE

Four layers, each independent but interconnected.

01

MEMORY

Obsidian-compatible markdown vault

02

SKILLS

Modular SKILL.md task definitions

03

AUTOMATIONS

Scheduled headless routines

04

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

QUICK START

Up and running in three steps.

01CLONE & CONFIGURE
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
02BUILD YOUR SKILLS
# 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
03DEPLOY & AUTOMATE
# 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

DEPLOYMENT

Run anywhere.

DEPLOYMENT TARGETS
WINDOWS
Task Scheduler
MACOS
launchd
LINUX
cron
GOOGLE CLOUD
Free tier e2-micro
ORACLE CLOUD
Free tier ARM
GITHUB ACTIONS
CI/CD
ANY VPS
cron + systemd

TECH STACK
Next.jsTypeScriptTailwind CSSshadcn/uiRechartsFramer MotionObsidianNode.js