EveryDev.ai
Subscribe
Home
Tools

3,419+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Scopey
    Scopey icon

    Scopey

    AI Coding Assistants

    A lightweight Rust CLI that keeps Claude Code, Codex, Grok, Pi, and OpenCode sessions aligned with your current intent by tracking scope and surfacing drift.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. Install via Homebrew or Cargo.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI Coding AssistantsAgent HarnessCommand Line Assistants

    Alternatives

    zotomp (oh-my-pi)CodeWhale
    Developer
    ArchAstroArchAstro builds developer tooling for AI-assisted coding wo…

    Listed Aug 2026

    About Scopey

    Scopey is a lightweight Rust CLI tool built to keep AI coding-agent sessions on track. It monitors sessions from Claude Code, Codex, Grok, Pi, and OpenCode, turning user prompts into a live scope definition and checking agent activity against it. The project is pre-1.0 software released under the MIT license by ArchAstro.

    What It Is

    Scopey sits between you and your coding agent by hooking into the agent's event lifecycle — capturing user prompts, tool calls, and session stops. It extracts a "current scope" from your prompts, periodically judges whether the agent's trajectory matches that scope, and injects corrections or reminders when drift is detected. The core idea is that your latest prompt is the authoritative statement of intent, not an ever-growing union of everything you've ever said.

    How the Scope Tracking Works

    Scopey installs hooks into each supported agent harness and processes three key events:

    • UserPromptSubmit — appends the prompt to the session and triggers a background summarize job to update the scope
    • PostToolUse / PostToolBatch — increments tool counts, injects scope reminders every M tools, and schedules a background judge every N tools
    • Stop — injects any pending correction before the session ends

    Scope extraction is intentionally current-state: additions and modifications preserve unaffected requirements, while explicit removals, contradictions, and replacements win. Questions add a read-only obligation without becoming new implementation authorization. Machine-generated task notifications are treated as context, not new user goals.

    Subagent Awareness

    By default (ignore_subagents = true), Scopey tracks only the conversation between the user and the top-level agent, ignoring subagent and child-agent sessions entirely. Each supported harness has a specific detection mechanism — Claude Code uses the agent_id field in hook input, Codex uses the same two fields for multi-agent collaboration spawns, and Pi and OpenCode filter at the extension/plugin layer before invoking the binary. Generic markers like a truthy subagent field, a non-empty parent_session_id, or SCOPEY_SUBAGENT=1 in the environment are also honored.

    Session Insights and Logs

    The scopey insights command turns stored judgement history into a cross-session drift report, sorting off-track sessions first and including scope, evaluated tool windows, attention rate, and the judge's explanation. Filtering supports date ranges, harness, verdict, working directory, and session ID. Hooks and background jobs append structured JSONL logs under ~/.scopey/logs/<session_id>.jsonl, with a scopey logs command for pretty-printing, tailing, filtering by level or event type, and following live output.

    Harness and Integration Support

    Scopey installs hooks for five coding agents via scopey setup:

    • Claude Code — ~/.claude/settings.json
    • Codex — ~/.codex/hooks.json
    • Grok — ~/.grok/hooks/scopey.json
    • Pi — ~/.pi/agent/extensions/scopey.ts
    • OpenCode — ~/.config/opencode/plugins/scopey.js

    It also integrates with Herdr, an agent multiplexer, to route notifications through Herdr's toast system and report pane state (e.g., marking a pane as blocked when a session goes off-track).

    Update: Scopey v0.1.3

    The latest release is v0.1.3, published on 2026-08-03. The repository was created on 2026-07-31 and has already accumulated over 100 stars on GitHub. The project is explicitly pre-1.0, with config and session formats designed to remain compatible but potentially still evolving before the first stable release. Installation is available via Homebrew (brew install ArchAstro/tools/scopey) or from source using Cargo or the provided Makefile.

    Scopey - 1

    Community Discussions

    Be the first to start a conversation about Scopey

    Share your experience with Scopey, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. Install via Homebrew or Cargo.

    • Full scope tracking and drift detection
    • Hook integration with Claude Code, Codex, Grok, Pi, and OpenCode
    • Session insights and JSONL logs
    • Herdr integration
    • Homebrew and Cargo installation

    Capabilities

    Key Features

    • Scope extraction from user prompts using cheap/fast AI models
    • Hook integration with Claude Code, Codex, Grok, Pi, and OpenCode
    • Automatic drift detection and correction injection
    • Subagent/child-agent session filtering
    • Cross-session insights and drift reports via scopey insights
    • Structured JSONL session logs with filtering and follow mode
    • Herdr integration for notifications and pane state reporting
    • Configurable tool-call thresholds for judging and reminders
    • Model selection with auto-detection of session harness
    • Project-level config overlay via .scopey/config.toml
    • Runtime safety with bounded background jobs and concurrency limits
    • scopey doctor for installation health checks
    • Homebrew and Cargo installation support

    Integrations

    Claude Code
    Codex
    Grok
    Pi
    OpenCode
    Herdr
    Homebrew
    Cargo/Rust toolchain
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Scopey and help others make informed decisions.

    Developer

    ArchAstro

    ArchAstro builds developer tooling for AI-assisted coding workflows. The organization's flagship project, Scopey, is a Rust CLI that keeps coding-agent sessions aligned with user intent across multiple agent harnesses. ArchAstro publishes open-source tools under the MIT license on GitHub.

    Read more about ArchAstro
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    zot icon

    zot

    A lightweight, single-binary terminal coding agent harness written in Go that supports 25+ LLM providers, four built-in tools, and multiple run modes.

    omp (oh-my-pi) icon

    omp (oh-my-pi)

    A terminal-based AI coding agent with IDE-grade tooling: hash-anchored edits, LSP, DAP debugger, subagents, browser automation, and 40+ model providers.

    CodeWhale icon

    CodeWhale

    A terminal coding agent harness for DeepSeek V4 and open models, providing a written Constitution for authority ranking, live tool feedback loops, and approval-gated agentic workflows.

    Browse all tools

    Related Topics

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    711 tools

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    128 tools

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    200 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions