Skip to content
@ctxr-dev

Contexter

OS for Agents

Pick a memory. Add the skills you want. Drop in agents when you need more horsepower.

⚡ 60-second start

# 1. Run the installer (no global install)
npx @ctxr/kit@latest

# 2. Pick a memory backend (one prompt, one decision)
#    Wiki  → https://github.com/ctxr-dev/llm-wiki-memory#install
#    RAG   → https://github.com/ctxr-dev/memory#install

# 3. Add the skill almost everyone wants
npx @ctxr/kit@latest install @ctxr/skill-code-review

That is the whole start. Everything below is opt-in.


🧠 Pick your memory

Self-improving memory: your agent recalls past lessons before it works and saves a new one the moment you correct it, so the same mistake does not recur. Both options expose the same tools and behavior, so you can switch later. Install one, not both.

📒 Wiki
recommended
🧬 RAG
Repo llm-wiki-memory
stars
memory
stars
Stores as git-versioned markdown in your repo local Dify vector store
Infra none (Node + git) Docker + Dify
Best for solo, small, and medium projects; offline; low overhead large corpora; teams; retrieval precision at scale
One-prompt AI install llm-wiki-memory#install memory#install

Default to Wiki. Choose RAG when the corpus is large, several people or agents share one store, or Docker is already in your stack. Not ready for persistent memory? Skip it. Nothing else depends on it.


🗺️ How the pieces fit

%%{init: {'theme':'base','themeVariables':{'background':'#0B1F23','primaryColor':'#102E32','primaryTextColor':'#F0E8D5','primaryBorderColor':'#E5C547','secondaryColor':'#163A3D','tertiaryColor':'#0A1E22','lineColor':'#3DBE9C','clusterBkg':'#0A1E22','clusterBorder':'#1A3A3A','fontFamily':'ui-monospace, JetBrains Mono, monospace'}}}%%
flowchart TB
    user(["👩‍💻 You"])
    agent{{"🤖 Your agent\n Claude Code · Codex · Cursor · any MCP client"}}

    subgraph installer ["📦 Installer"]
      kit["@ctxr/kit"]
    end

    subgraph skills ["🛠️ Skills"]
      sCR["skill-code-review"]
      sFE["skill-frontend-excellence"]
      sLW["skill-llm-wiki"]
    end

    subgraph agents ["🧑‍🚀 Agents"]
      aSE["agent-staff-engineer"]
      aCE["agent-codebase-explorer"]
      aPR["agent-plan-reviewer"]
      aIA["agent-implementation-auditor"]
    end

    subgraph memory ["🧠 Memory"]
      mW["llm-wiki-memory"]
      mR["memory (RAG)"]
    end

    subgraph integ ["🔌 Integrations"]
      mcp["@ctxr/mcp-github"]
      meth["github-dev-methodology"]
    end

    user --> agent
    agent --> kit
    kit -.installs.-> skills
    kit -.installs.-> agents
    agent --> memory
    agent --> integ
    aSE -.uses.-> sLW
    aSE -.reviews via.-> sCR
Loading

📦 Installer

Package Use it to Badges
@ctxr/kit install, update, and scaffold skills and agents (npx @ctxr/kit@latest, no global) npm stars

🛠️ Skills

Install any skill with npx @ctxr/kit@latest install @ctxr/<name>.

Skill Use it to Badges
@ctxr/skill-code-review multi-specialist review with a GO / NO-GO verdict npm stars
@ctxr/skill-frontend-excellence ship fast, accessible, distinctive web UI (Lighthouse 95+ mobile, 99+ desktop) npm stars
@ctxr/skill-llm-wiki make your agent read docs and code token-efficiently npm stars

🧑‍🚀 Agents

Install with npx @ctxr/kit@latest install @ctxr/<name>.

Agent Use it to Badges
@ctxr/agent-staff-engineer drive a ticket to an open PR, then hand off before merge (pulls in skill-llm-wiki, reviews via skill-code-review) npm stars
@ctxr/agent-codebase-explorer read-only "where is X / what references Y" search subagent, capped structured reports npm stars
@ctxr/agent-plan-reviewer adversarially review a plan or design before you confirm it: gaps, blind spots, edge cases, infeasibilities npm stars
@ctxr/agent-implementation-auditor post-build conformance audit: missed plan items, divergences, cross-implementation parity npm stars

💡 The codebase-explorer, plan-reviewer, and implementation-auditor are read-only by design: their tool surface is scoped to Read / Grep / Glob / Bash, so a flaky MCP connector cannot kill subagent init. Drop them in front of the staff-engineer loop or use them standalone.


🔌 MCP servers

Server Use it to Setup Badges
@ctxr/mcp-github structured GitHub tool calls instead of gh shell-outs register it npm stars

📐 Methodology

Repo Use it to How Badges
ctxr-dev/github-dev-methodology a consistent GitHub issue and PR workflow, plus subagent orchestration clone into your project; read it stars

📚 Libraries

Package Use it to Badges
@ctxr/fsm author your own deterministic multi-agent workflow (usually transitive, via a skill or agent) npm stars

🌐 Recommended external plugins

The ctxr stack plays nicely with other open skill and agent collections. A few we like:

Source Install What you get
mattpocock/skills npx skills@latest add mattpocock/skills Matt Pocock's TypeScript and authoring skills, batteries included
anthropics/skills npx skills@latest add anthropics/skills Anthropic's reference skills (PDFs, spreadsheets, Office, web-design)
wshobson/agents clone and point your agent loader at it Community catalog of Claude Code subagents

The npx skills@latest add <owner>/<repo> pattern works for any GitHub repo that follows the skills layout. Use @ctxr/kit for ctxr packages, skills CLI for everything else, side by side.


🎯 Starter stacks

StackWhat you installWhy
🧍 Solo / side project kit + Wiki memory + skill-code-review
add skill-frontend-excellence if you ship web UI
zero infra, every commit reviewed, lessons accumulate
👥 Small team on GitHub above + github-dev-methodology (pr-only preset) + mcp-github shared PR loop without imposing the whole methodology at once
🏢 Larger team RAG memory + skill-code-review + agent-staff-engineer + agent-plan-reviewer + agent-implementation-auditor + methodology (full preset) + mcp-github plan is adversarially reviewed, build is automated, output is audited against plan

🤝 Contribute

All repos are MIT licensed and developed in the open at github.com/ctxr-dev.

  • 🐞 Found a bug? Open an issue on the relevant repo.
  • 💡 Have an idea? Discussions are on, fire away.
  • 🛠️ Want to ship a skill or agent under @ctxr/? Start from @ctxr/kit and PR it.

Built in the open for agents that ship.

Contexter signal trail

Pinned Loading

  1. skill-code-review skill-code-review Public

    Python 1

  2. llm-wiki-memory llm-wiki-memory Public

    Local, git-versioned memory for AI coding agents. No RAG, no Docker, no external service. Capture, compile, recall over a local LLM wiki with on-device embeddings and an MCP server.

    JavaScript 99

  3. kit kit Public

    JavaScript

  4. memory memory Public

    Inspectable local project memory for AI coding agents.

    JavaScript 11

  5. github-dev-methodology github-dev-methodology Public

    Easy instructions of how to perform dev cycle in current organization before staff engineer is fully ready

    JavaScript

Repositories

Showing 10 of 15 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…