Documentation

Plans, tasks, orchestration, memory, and the CLI. Everything you need to manage AI agents at the project level. Works with Claude Code, Codex, Cursor, and Gemini.

Getting Started

Codecast is a CLI daemon that runs in the background, syncing your AI coding sessions to a shared database. Once installed, every Claude Code, Codex, Cursor, or Gemini session is automatically captured -- searchable, shareable, and accessible from any device.

Installation

One command. Works on macOS, Linux, and WSL.

View install script
curl -fsSL codecast.sh/install | sh
Also via brew install codecast-sh/tap/codecast or npm install -g @codecast-sh/cli

This installs the cast CLI and background daemon. No root access required.

Authentication

Authenticate via browser OAuth. This links your machine to your codecast account.

$ cast auth
Opening browser for authentication...
Authenticated as you@example.com

Alternatively, generate a setup token on the web dashboard at Settings > CLI and run cast login <token>.

The Daemon

The daemon watches your local session files and syncs them in real-time. It runs quietly in the background with no impact on your workflow.

$ cast start
Daemon started (pid 42891)
Watching for sessions...
$ cast status
Daemon: running (pid 42891)
Sessions: 847 synced, 0 pending
Latency: 38ms avg
Uptime: 4d 12h
cast startStart the background daemon
cast stopStop the daemon
cast restartRestart (also checks for updates)
cast statusShow daemon status, sync info
cast logs -fTail daemon logs
cast setupAuto-start daemon on login
Tip
Run cast setup after install to auto-start the daemon on login. You won't need to think about it again.

Deep Dive Guides

The sections below are the reference. These guides go deeper: how each agent capability works mechanically -- what cast install writes where, what happens at runtime, and the patterns each one enables. Start with how agent snippets work; everything else builds on it.

Agent Memory

Every AI coding session starts from scratch. Agent memory changes that -- your agent can search all past sessions, recall decisions, and understand context from work done days or weeks ago. Memory works across all tools: a Claude Code session can recall what you built in Cursor.

Setup

Run cast memory to install the memory component into your project's CLAUDE.md. This gives your agent instructions on how to use codecast for context retrieval.

CLAUDE.md (added by cast memory)
## Memory
You have access to past sessions via cast CLI.
Search proactively when starting new tasks.
# Search & Browse
cast search "auth" -s 7d # keyword search
cast context "stripe integration" # pre-work intelligence
cast ask "why did we use Convex?" # natural language query
# Recall
cast handoff # context transfer doc
cast decisions list # architectural decisions
cast blame src/auth.ts # git blame, lines resolve to sessions
Note
The cast ask command uses RAG with your session history and requires an ANTHROPIC_API_KEY environment variable.

Commands

cast memoryInstall memory component into CLAUDE.md
cast ask "question"Natural language query over all sessions (RAG)
cast context "query"Pre-work intelligence: find relevant context before starting
cast search ...Full-text search across sessions (see Search)
cast decisions listRecall architectural decisions
cast blame <file>Drop-in git blame; author column shows the session that wrote each line

How It Works

Codecast builds a hybrid search index over your sessions -- combining keyword matching with semantic embeddings. When your agent calls cast search or cast ask, it queries this index and returns relevant messages with full context. The agent sees the original conversation fragments, not summaries, so it gets precise, actionable information.

Search & Browse

Find any session, message, or file change across your entire history. Supports exact phrases, time range filters, team member filters, and context lines around matches.

# Basic search
$ cast search "auth bug"
# Exact phrase (quotes = phrase match)
$ cast search "token refresh logic"
# Time range
$ cast search auth -s 7d
$ cast search auth -s 2025-01-01 -e 2025-02-01
# Global (all projects)
$ cast search auth -g
# By team member
$ cast search auth -m sarah
# User messages only
$ cast search auth -u
# With context lines
$ cast search "webhook" -C 3
# Keyword-only or semantic-only
$ cast search auth --keyword
$ cast search "how does auth work" --semantic
Tip
Use quotes for exact phrase matching: cast search "error handling" matches the exact phrase, while cast search error handling matches both words anywhere.

Feed & List

Browse recent sessions chronologically.

# Recent sessions feed
$ cast feed
# Global feed (all projects)
$ cast feed -g
# Filter by keyword
$ cast feed -q "payments"
# Filter by team member
$ cast feed -m alex
# Paginated
$ cast feed -n 20 -p 2

Read Messages

Read specific messages from any session by ID and range.

# Read full conversation
$ cast read abc123
# Read messages 10 through 20
$ cast read abc123 10:20
# Read from message 50 onward
$ cast read abc123 50:

Session Analysis

Understand what happened in any session -- files changed, commits made, tools used. Generate summaries and handoff documents for continuity between sessions.

Diff & Summary

# Files changed, commits, tools used in a session
$ cast diff abc123
# Aggregate today's changes across all sessions
$ cast diff --today
# Generate session summary
$ cast summary abc123
# Summarize today's work
$ cast summary --today

Context & Handoff

cast context gathers relevant prior work before you start something new.cast handoff generates a context transfer document for session continuity.

# Pre-work intelligence
$ cast context "add stripe payments"
Found 3 relevant sessions:
- Payment webhook debugging (2d ago)
- Stripe SDK integration (1w ago)
- Billing page UI (1w ago)
# Generate handoff doc
$ cast handoff
Handoff document generated.
Goal: Implement dark mode across settings
Approach: CSS variables with system preference sync
Status: Tests passing, 2 edge cases remaining
Next: Fix mobile viewport handling

Blame & Similar

cast blame is a drop-in git blame whose author column is the codecast session -- and person -- that wrote each line. Output matches git blame exactly, so anything that parses it keeps working. See Editor Integration to wire it into your editor.

# Line-level blame: each line resolves to the session that wrote it
$ cast blame src/auth/callback.ts
aef1990f2 (jx74qbm Samvit Agent prompt guardrails 2026-05-13 1) export ...
# Just one line
$ cast blame src/auth/callback.ts:42
# Session log for a file -- which sessions shaped it, newest first
$ cast blame --log src/auth/callback.ts
# Find sessions with related files
$ cast similar --file src/api.ts

A line resolves when it was committed (or written) through a synced session you can see; other lines fall back to the normal git author. It works across machines and teammates -- attribution rides on the commit, not the file's path on disk.

Editor Integration

Session Blame

Bring session blame into your editor: hover a line to see which session (and teammate) wrote it, and jump straight to that conversation -- anchored to the exact edit. Two integrations ship today; both are thin clients over the cast CLI, so they share one source of truth.

Vim / Neovim (fugitive)

If you use vim-fugitive, one command wires it up. It installs a tiny git shim that routes fugitive's blame through codecast and writes the vim glue:

$ cast blame --install-fugitive
# then add to your vimrc / init.vim:
source ~/.codecast/fugitive.vim

Now in any git repo:

:Git blamethe author column shows the codecast session that wrote each line
<CR> on a lineopens that conversation, scrolled to the exact edit
:Gslogsession log for the file, newest first (the :Gclog equivalent)
<CR> / O in :Gslogopen the conversation, or the file as it was at that session's commit

VS Code / Cursor

Two options. The extension gives inline blame on the current line plus commands to open the conversation and session log. The terminal tasks need no extension -- they run cast from the integrated terminal. Both require the CLI installed and authenticated (cast auth).

Option 1 — Extension

Download the .vsix
# Install the downloaded extension (works in VS Code and Cursor)
$ code --install-extension ~/Downloads/codecast-blame.vsix
# or Cursor: cursor --install-extension ~/Downloads/codecast-blame.vsix
# If 'cast' isn't on your editor's PATH, set codecast.cliPath
# (Settings -> Codecast -> Cli Path) to the output of: which cast
Inline blamethe session + person who wrote the current line, at the end of the line
Cmd/Ctrl+Alt+Bopen the conversation for the current line
Cmd/Ctrl+Alt+Lsession log for the file -- pick one to open its conversation

Option 2 — Terminal tasks (no extension)

Add a task and keybinding that run cast on the current file and line -- works identically in VS Code and Cursor.

.vscode/tasks.json
{
"version": "2.0.0",
"tasks": [
{ "label": "cast: open session for line", "type": "shell",
"command": "cast blame ${file}:${lineNumber} --open" },
{ "label": "cast: session log", "type": "shell",
"command": "cast blame --log ${file}",
"presentation": { "reveal": "always", "panel": "shared" } }
]
}
keybindings.json
{ "key": "cmd+alt+b", "command": "workbench.action.tasks.runTask",
"args": "cast: open session for line" },
{ "key": "cmd+alt+l", "command": "workbench.action.tasks.runTask",
"args": "cast: session log" }

Plans

Overview

Plans are multi-session features. Create a plan, define goals and acceptance criteria, then bind sessions to it as you work. Each session logs decisions and discoveries that other sessions can reference -- so parallel agents stay coordinated.

Commands

# Create a plan
$ cast plan create "Add payments" -g "Stripe integration with subscriptions" -a "Checkout works, webhooks verified, tests pass"
# List plans
$ cast plan ls --active
$ cast plan ls --draft
# Show plan details (tasks, decisions, progress)
$ cast plan show ct-a1b2
# Bind current session to a plan
$ cast plan bind ct-a1b2
# Add comments (progress, decisions, discoveries, references)
$ cast plan comment ct-a1b2 "deployed to staging"
$ cast plan comment ct-a1b2 "Use Stripe Checkout" -d -r "Simpler than custom flow, handles SCA"
$ cast plan comment ct-a1b2 "Stripe webhooks need idempotency keys" -f
$ cast plan comment ct-a1b2 "API schema" --ref docs/api.md
# Lifecycle
$ cast plan activate ct-a1b2
$ cast plan pause ct-a1b2
$ cast plan done ct-a1b2

Workflow

A typical plan lifecycle: create in draft, move to active when work begins, bind sessions as agents work on it, add comments along the way (decisions, discoveries, references), and mark done when acceptance criteria are met. Plans are visible in the web dashboard with progress bars, linked sessions, and a unified comment timeline.

Orchestration

Orchestration runs plan tasks in parallel waves across multiple agents. When you call cast plan orchestrate <id>, codecast decomposes the plan into dependency-aware waves and spins up agent sessions for each task -- each with full plan context, decisions, and relevant prior sessions.

# Decompose plan into tasks (if not done already)
$ cast plan decompose ct-a1b2
# Orchestrate: run tasks in parallel waves
$ cast plan orchestrate ct-a1b2
Wave 1: starting 3 tasks in parallel...
ct-t1 "Database schema migration" → claude session abc
ct-t2 "API endpoint stubs" → codex session def
ct-t3 "Test fixtures" → claude session ghi
Wave 1: 3/3 complete
Wave 2: starting 2 tasks (depended on wave 1)...
ct-t4 "Business logic" → claude session jkl
ct-t5 "Integration tests" → codex session mno
Wave 2: 2/2 complete
Plan ct-a1b2 complete. 5 tasks done.

Failed tasks retry automatically with escalation logging. If a task fails multiple times, it's marked as blocked and orchestration continues with remaining tasks. You can monitor progress from the web dashboard or CLI.

Tasks

Overview

Tasks are work items -- features, bugs, chores. They can belong to a plan or stand alone. Tasks have priorities, dependencies, and a status workflow: draftopenin_progressin_reviewdone.

Commands

# Create a task
$ cast task create "Add password reset" -t feature -p high --plan ct-a1b2
# List tasks
$ cast task ls --status open -p high
$ cast task ready # unblocked tasks ready to work
# Work on a task
$ cast task start ct-x1y2 # marks in_progress
$ cast task comment ct-x1y2 "Implemented reset flow" -t progress
$ cast task done ct-x1y2 # marks done
# Dependencies
$ cast task create "Email templates" --blocked-by ct-x1y2
Note
Tasks are synced to the web dashboard and visible in the Plans view. Team members can see task status in real-time.

Auto-Mining & Triage

Codecast automatically mines tasks from your agent sessions. As agents work, they generate insights -- when an insight looks like a work item, it's extracted as a suggested task with a confidence score.

Suggested tasks appear in a triage queue on the web dashboard. You can accept, dismiss, or edit them before promoting to your task backlog. Accepted tasks can be bound to plans, assigned priorities, and given labels. Dismissed tasks are hidden but recoverable.

The triage system has three status categories: active (accepted into your backlog), suggested (mined but not yet triaged), and dismissed (rejected). Filter toggles in the toolbar let you switch between these views.

Note
Auto-mined tasks reference the source session and message, so you can always trace back to the original context where the work item was identified.

Workflows

Visual workflow definitions with node-based execution. Define multi-step pipelines that combine agent tasks, shell commands, prompts, human approvals, and conditional logic. Workflows run with live progress tracking, and each node gets its own tmux session streamed to the dashboard.

Node Types

agentSpin up an agent session (Claude, Codex, etc.) with a prompt and full plan context
promptSend a prompt to an existing session or create a new one with specific instructions
commandExecute a shell command and capture the output for downstream nodes
human_gatePause the workflow and wait for human input via the message composer
conditionalBranch the workflow based on the output of a previous node
parallelRun multiple nodes simultaneously and wait for all to complete

Execution

Workflows are attached to plans and executed from the CLI or web dashboard. Each run creates a primary conversation visible in the inbox, and individual node sessions appear as sub-sessions.

# Attach a workflow definition to a plan
$ cast plan set-workflow ct-a1b2 workflow.yaml
# Execute the workflow
$ cast workflow run ct-a1b2
Starting workflow for plan "Auth Overhaul"...
[1/5] agent: "Design API schema" → session abc
[2/5] command: npm test → exit 0
[3/5] human_gate: "Review the schema design"
Waiting for human input...

Human gates pause the workflow and notify you (via push notification on mobile or desktop). Reply through the regular message composer to continue. The workflow resumes with your input passed to the next node.

Triggers

Overview

Set triggers — autonomous agent runs that fire without your involvement. One-shot triggers fire after a delay, recurring triggers fire on an interval, and event triggers fire in response to GitHub webhooks.

A trigger created inside a session binds to it: each run continues that session as a new turn, with its full history. Pass --spawn to start a fresh session per run instead — no history, just your prompt, with a link back to the trigger at the top of each run's conversation.

Commands

# One-shot: check CI in 30 minutes (continues the current session)
$ cast trigger add "Check if CI is green on main" --in 30m
# Recurring, fresh session per run, linked back to the trigger
$ cast trigger add "Review open PRs and summarize" --every 4h --spawn
# Manage triggers
$ cast trigger ls # list active
$ cast trigger ls --all # include completed/failed
$ cast trigger run ct-s1 # fire immediately
$ cast trigger pause ct-s1 # pause
$ cast trigger cancel ct-s1 # cancel
$ cast trigger log ct-s1 # view last run output

Event Triggers

With the GitHub integration installed, triggers can fire on repository events.

# Respond to new PR comments
$ cast trigger add "Respond to PR review comments" --on pr_comment
# Run on new PRs
$ cast trigger add "Review PR for security issues" --on pr_opened
# Run after merge
$ cast trigger add "Verify deployment after merge" --on pr_merged
# Run on push to main
$ cast trigger add "Check for broken tests" --on push
--in <duration>Delay before run: 30m, 2h, 1d
--every <duration>Recurring interval
--on <event>GitHub event: pr_comment, pr_opened, pr_merged, push
--spawnFresh session per run, no history — linked back to the trigger
--for <session>Bind runs to a specific session (defaults to the one you're in)
--safeRead-only run: investigate and report, never modify (default: the run can act)
--max-runtime <dur>Override max runtime (default: 10m)

Desktop App

The codecast desktop app is your command center for managing sessions, orchestrating agents, and staying on top of team activity. Available as a native macOS app and at codecast.sh.

codecast.sh
Codecast dashboard showing the session feed with live agent status, sidebar navigation, team members, and project bookmarks
The dashboard feed -- all your sessions with live status, summaries, and team activity

Inbox & Orchestration

The inbox is where you orchestrate your agents. It shows all running and recent sessions with live status updates -- working, idle, permission_blocked, thinking, compacting -- organized by priority: sessions needing your input float to the top, pinned sessions stay accessible, and working sessions update in real-time.

From the inbox you can send messages to agents, approve pending permissions, pin important sessions, defer sessions for later, and dismiss completed work. The keyboard-driven workflow lets you fly through a queue of active sessions without touching the mouse.

codecast.sh
Codecast inbox showing live agent sessions with status indicators, pinned sessions, and working/needs-input categories
The inbox -- orchestrate multiple agents with live status, summaries, and direct messaging

Keyboard Shortcuts

The inbox is designed for keyboard-first orchestration. Navigate, triage, and respond to agents without leaving the keyboard.

Ctrl+J / KNavigate sessionsMove up/down in the session queue
Ctrl+IJump to needs inputFirst session waiting for your input
Ctrl+PJump to pinnedJump to first pinned session
Ctrl+Shift+PPin/unpinPin or unpin the current session
Ctrl+LLabel sessionFile the session under a label (type to filter or create)
Ctrl+,Cycle viewCycle inbox grouping: status / time / label
Ctrl+BackspaceStashRemove session from queue
Shift+BackspaceDefer & advanceDefer session and move to next
Ctrl+Shift+BkspKill agentKill the session's agent process
Ctrl+NNew sessionCreate a new agent session
Cmd+KCommand paletteJump to any session, task, or page
Cmd+/SearchOpen global search
D / TDiff / TreeToggle diff or file tree panel
Alt+J / KNavigate messagesJump between user messages
Alt+FForkFork conversation from current message
Ctrl+MFocus composeFocus the message input
Ctrl+.Zen modeHide sidebars for focused reading
Ctrl+[ / ]Toggle sidebarsToggle left/right sidebars
?Shortcuts helpShow the keyboard shortcut overlay
Tip
The inbox remembers your position. Dismiss a session with Ctrl+Backspace and it automatically advances to the next one -- perfect for triaging a queue of agent sessions.

Command Palette

Press Cmd+K to open a Linear-style command palette that searches across sessions, tasks, plans, docs, and built-in actions. Results are ranked by recency and relevance, with separate groups for each entity type.

The palette supports quick actions directly on search results: pin, stash, defer, kill, or rename sessions without leaving the palette. Type a slash prefix to filter by entity type (/task, /plan, /doc) or use it as a launcher for built-in navigation (inbox, tasks, plans, docs, settings).

codecast.sh
Command palette showing recent sessions, quick actions, and entity search
Cmd+K palette -- jump to anything, run actions, search across all entities
Tip
On the desktop app, Cmd+Shift+Space opens a global floating palette from any app -- no need to switch to codecast first.

Activity Feed

The activity feed is a daily digest view organized by project. Each day shows a narrative summary of what happened across all agent sessions, with individual session cards showing titles, status, message counts, and the agent that was used.

Filter by project to focus on one codebase, or view the global feed to see everything. Team activity feeds show what your teammates' agents are working on -- useful for standups and avoiding duplicate work.

codecast.sh
Activity feed showing daily session digest grouped by project
Activity feed -- daily digest with project grouping, session cards, and narrative summaries

Conversations

The conversation view shows the full message history with syntax-highlighted code blocks, inline tool calls (Read, Edit, Bash, etc.), file diffs, and screenshots. You can share specific messages via link, bookmark important moments, and view the session timeline.

codecast.sh
Codecast conversation view showing message history with code blocks, tool calls, and file diffs
Conversation view -- full session history with syntax highlighting, tool calls, and inline diffs

Plans & Tasks

The Plans page shows all plans with status filters (draft, active, paused, done). Each plan displays its goal, acceptance criteria, progress bar, linked sessions, unified comment timeline with decisions, discoveries, and references. Tasks are visible within their parent plan or as a standalone list with priority and status filtering.

codecast.sh
Codecast plans page showing active plans with status badges, task counts, and plan IDs
Plans view -- track multi-session features with goals, tasks, and decision history

Documents

A collaborative document editor for specs, designs, investigations, handoffs, and notes. Documents are TipTap-powered with rich formatting: headings, lists, code blocks, and images.

The key feature is entity mentions -- type @ to reference sessions, tasks, plans, or other docs inline. Mentions are resolved and rendered as rich links with status badges. Slash commands (/) provide quick formatting and entity insertion.

Documents can be created from the web UI, CLI (cast doc create), or promoted from plan bodies. Types include note, plan, design, spec, investigation, and handoff. All documents are searchable via the command palette and CLI.

Download

The desktop app provides native macOS integration with system notifications, menu bar access, and a dedicated window. Everything in the web app works identically in the desktop app.

Download for macOS

Mobile App

Your AI coding sessions, always in your pocket. The iOS app gives you full access to your sessions, agents, and team activity from anywhere.

Features

Live session streaming
Watch your agents work in real-time with push notifications when they need input
Send messages
Send prompts and messages to running agents directly from your phone
Review diffs
Review code changes and approve permissions remotely
Full search
Search your entire session history on the go

Download

App Store (iOS)Android coming soon

Teams

Setup

# Create a team
$ cast teams create "acme-eng" --icon "🚀"
# Invite members
$ cast teams invite sarah@acme.com -r admin
$ cast teams invite mike@acme.com
# Join with invite code
$ cast teams join abc123
# Sync settings
$ cast teams sync-settings

Sharing & Privacy

Sessions are private by default. Sharing is controlled at three levels:

Directory mappings

Map project directories to teams with auto_share: true. All sessions in that directory are automatically shared.

Team share paths

Configure paths that auto-share with your active team via user settings.

Manual sharing

Share individual sessions or messages via link with cast links. Mark sessions private with cast private.

Important
Setting an active_team_id alone does NOT share sessions. You must also configure directory mappings or team share paths for sessions to be visible to teammates.

Knowledge

Decisions

Track architectural decisions with rationale. Searchable by your agent and your team.

# Record a decision
$ cast decisions add "Use Convex for backend" --reason "Real-time subscriptions, no WebSocket infra needed" --tags "backend,database"
# List recent decisions
$ cast decisions
# Search decisions
$ cast decisions --search "database"
# Filter by project
$ cast decisions --project /Users/me/src/app
# Delete
$ cast decisions delete ct-d1

Bookmarks

# Bookmark a specific message
$ cast bookmark abc123 42 --name "auth-pattern" --note "Good pattern for OAuth callback"
# List bookmarks
$ cast bookmark --list
# Delete
$ cast bookmark --delete auth-pattern

Integrations

Supported Tools

Claude Code
Full sync with live status
OpenAI Codex
Session sync and memory
Cursor
Session sync and memory
Gemini CLI
Session sync and memory

GitHub

Install the GitHub app to link PRs with sessions, process webhook events, and fire agent triggers on repository activity.

Configure at Settings > Integrations > GitHub App on the web dashboard. Once installed, PRs are automatically linked to the sessions that created them, and you can set up triggers that fire on repository events.

CLI Reference

Complete command reference. All commands use the cast prefix.

Core

authBrowser OAuth authentication
login <token>Link device with setup token
start / stop / restartDaemon lifecycle management
statusDaemon status, sync info, uptime
syncManual sync all unsynced sessions
logs -fView daemon logs with follow mode
setupAuto-start daemon on login
config [key] [value]View or set configuration
healthSync health: dropped ops, pending, retry queue
repair [--dry-run]Repair incorrectly stored project paths
updateCheck and install updates

Search & Browse

search <query>Hybrid search with filters: -s, -e, -g, -m, -u, -C, --keyword, --semantic
feedBrowse recent sessions: -g, -q, -m, -n, -p, -s, -e
listChronological list with title, summary, link
read <id> [range]Read messages from a session (e.g., 10:20)
resume <query>Search and resume a session

Analysis

diff [id]Files changed, commits, tools used
diff --todayAggregate today's file changes
summary [id]Generate session summary: goal, approach, outcome
context <query>Pre-work intelligence from related sessions
ask "<question>"Natural language RAG query (needs ANTHROPIC_API_KEY)
handoffGenerate context transfer document

File Intelligence

blame <file>Which sessions touched a file
similar [--file <path>]Sessions with related files

Plans

plan create "<title>"Create plan with -g goal, -a criteria
plan lsList plans: --active, --draft, --done, --all
plan show <id>Plan details with tasks, decisions, progress
plan bind / unbind <id>Bind/unbind current session to plan
plan comment <id> <text>Add comment: -d decision, -f discovery, --ref pointer
plan activate / pause / done / drop <id>Lifecycle transitions

Tasks

task create "<title>"Create task: -t type, -p priority, --plan, --blocked-by
task lsList tasks: --status, -p priority, --project, --plan
task readyUnblocked tasks ready to work
task start / done / drop <id>Status transitions
task comment <id> "text"Add comment: -t type

Triggers

trigger add "<prompt>"Set trigger: --in, --every, --on, --context, --mode
trigger lsList triggers: -s status, -a all
trigger run / pause / cancel <id>Manage a trigger
trigger log <id>View last run conversation
trigger complete <id>Report completion with --summary

Collaboration

linksGet dashboard and share URLs
private [id]Mark session as private
bookmark <id> <msg>Bookmark message: --name, --note
teamsList teams
teams create / join / inviteTeam management

Knowledge

decisions [add|delete]Track architectural decisions
learn [add|show|search]Save and search code patterns
memoryInstall agent memory component

Ready to get started?

Free for individuals. One command to install.