Install
$ agentstack add skill-arasz-ai-badger-explore-codebase ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Explore codebase
Orient before reading. The failure this skill exists to prevent: opening files in the order a search engine returned them and calling the resulting impression an understanding.
The workflow derives from the skill templates the code-review-graph project auto-installs (MIT, © 2026 Tirth Kanani), rewritten here to be tool-agnostic: every step carries a baseline that needs no graph server.
Steps
- Establish the shape before the content — how large, what languages, how many entry
points. Accelerated: a graph-stats call (e.g. list_graph_stats-shaped; discover the real tool name from the server's own listing). Baseline: git ls-files | wc -l, cloc or git ls-files | sed 's/.*\.//' | sort | uniq -c | sort -rn for the language split, and the project's own manifest (package.json, *.csproj, pyproject.toml) for its declared dependencies and entry points.
- Find the module boundaries the project actually has, not the ones its directory names
suggest. Accelerated: an architecture-overview or community-listing call (e.g. get_architecture_overview-shaped) clusters by real coupling. Baseline: read the top-level directory tree, then check it against the imports — a directory whose files import mostly from one other directory is one module wearing two names.
- Read the entry points first. A
main, an HTTP route table, a CLI command registry, a
message consumer, a scheduled job. These are where the project states what it is for. Accelerated: a flow listing (e.g. list_flows-shaped) names the paths the project itself considers significant. Baseline: grep for the framework's entry-point markers — route decorators, if __name__ == "__main__", Main(, .MapGet(, a bin or scripts entry in the manifest.
- Follow one real path end to end before reading anything else. One request, one command,
one message — from entry point to persistence and back. Accelerated: a flow query (e.g. get_flow-shaped) returns the whole path in one call. Baseline: read each hop in sequence. One traced path teaches more than ten skimmed files, because it shows which abstractions the project actually uses rather than which it declares.
- Locate the tests for that path. They are the executable description of intended
behaviour, and their absence is itself a finding worth recording. Accelerated: a tests-for query (e.g. query_graph-shaped with a tests-for pattern). Baseline: search for the symbol's name under the test directory, and check whether the project's test command names a coverage report you can read instead.
- Write down what you concluded and what you did not check. An exploration that produces
no artifact has to be repeated by the next person, including you next week.
Gotchas
No environment-specific gotchas known.
Red flags — STOP
- Reading files in search-result order and calling it an understanding
- Describing the architecture from directory names, without checking the imports against them
- Skipping step 4 — a traced path is the difference between knowing the layout and knowing the
system
- Reporting "the codebase does X" from a region you did not open; say which parts you read
- Treating a generated or vendored directory as authored code — check whether it is in
.gitignore or carries a generation banner before drawing conclusions from it
An orientation is not finished until it names the entry points, one traced path, where that path's tests live, and — explicitly — the regions left unread.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Arasz
- Source: Arasz/ai-badger
- License: MIT
- Homepage: https://github.com/Arasz/ai-badger
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.