avos-search

avos-search is a skill for Claude Code, Codex, Cursor from Avos-Lab/git-aware-coding-agent. It costs 10 tokens per session (671 once invoked), scanned A, original, Apache-2.0.

A command-line search tool for finding engineering context stored in repository memory. It answers questions about existing code decisions, patterns, and functionality.

In plain words
What is it for?
Use it to investigate architecture and design rationale, locate established implementation patterns, and check whether a capability already exists.
Why use it?
It helps developers understand an unfamiliar codebase before making changes, reducing the risk of duplicating or contradicting existing work.

Skill for Claude CodeCodexCursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/avos-lab/git-aware-coding-agent/avos-search
Any agent
npx skills add Avos-Lab/git-aware-coding-agent --skill avos-search
Clone the repo
git clone --depth 1 https://github.com/Avos-Lab/git-aware-coding-agent

Made for: Claude Code, Codex, Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for avos-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/avos-lab/git-aware-coding-agent/avos-search.svg)](https://agentmods.dev/skills/avos-lab/git-aware-coding-agent/avos-search)
Your own site
<a href="https://agentmods.dev/skills/avos-lab/git-aware-coding-agent/avos-search"><img src="https://agentmods.dev/badge/skills/avos-lab/git-aware-coding-agent/avos-search.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 671 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00010 $0.00671
Opus 5 $0.00005 $0.00336
Sonnet 5 $0.00002 $0.00134
Haiku 4.5 $0.00001 $0.00067

Measured 3d ago against content hash 1d69a9baf595, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

avos-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/skills/avos-search/SKILL.md · 121 lines

How it starts

The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Avos Search (Ask)

Use this skill when you need to search repository memory for engineering context.

When to Use

Use this skill when at least one trigger applies:

  • You are editing existing production code in an unfamiliar/shared module
  • You expect a medium/large change (multi-file, refactor, behavior change)
  • You need design rationale before changing architecture/API/auth/data flow
  • You need to avoid duplicating an existing pattern

You can skip this skill for low-risk tasks:

  • Docs/comments/typo-only changes
  • New isolated file creation without touching existing behavior
  • Test-only updates that do not alter production logic

Command

avos ask --json "your question about the codebase"

Examples

Understanding Code Decisions

avos ask --json "why does the authentication module use JWT instead of sessions?"

Finding Existing Patterns

avos ask --json "how do other API endpoints handle pagination?"

Checking for Existing Functionality

avos ask --json "is there existing error handling middleware?"

Response Format

Success with answer:

{
  "success": true,
  "data": {
    "format": "avos.ask.v1",
    "raw_text": "...",
    "answer": {
      "text": "The authentication module uses JWT because..."
    },
    "evidence": {
      "is_none": false,
      "items": [
        {
          "type": "pr",
          "ref": "123",
          "title": "Implement JWT auth",
          "author": "developer"
        }
      ],
      "unparsed_lines": []
    },
    "parse_warnings": []
  }
}

No matching evidence:

{
  "success": true,
  "data": {
    "format": "avos.ask.v1",
    "answer": {
      "text": "No matching evidence found in repository memory."
    },
    "evidence": {
      "is_none": true,
      "items": []
    }
  }
}

Best Practices

  1. Be specific: "how does user authentication work?" is better than "auth?"
  2. Include context: "why does the login API return 401 instead of 403?" is better than "login error"
  3. Use for high-risk edits: Trigger this before substantial or unfamiliar code edits
  4. Skip for trivial edits: Avoid unnecessary memory calls for low-risk cosmetic changes

Read the full file on GitHub · 121 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 121 lines · 10 tokens per session scan A 1d69a9baf595

Subscribe to this mod's changes

avos-search is a skill published in the GitHub repository Avos-Lab/git-aware-coding-agent (2 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 10 tokens to every session and 671 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.