repowise-intelligence

repowise-intelligence is a skill for Claude Code, Codex from strikersam/autonomous-ai-agency. It costs 42 tokens per session (1,195 once invoked), scanned A, original, MIT.

A codebase-intelligence layer that helps agents understand how a project is connected and why it was built that way. It uses dependency relationships, version-control history, generated documentation, and recorded architecture decisions.

In plain words
What is it for?
Use it before significant changes or when investigating complex code to trace file and symbol relationships, inspect history, find ownership patterns, refresh documentation, and understand architectural decisions.
Why use it?
It reduces the need to read an entire codebase and provides context about dependencies, ownership, past changes, and design choices.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md; mentions Codex.

Good fit Use it before significant changes or when investigating complex code to trace file and symbol relationships, inspect history, find ownership patterns, refresh documentation, and understand architectural decisions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/repowise-intelligence
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.

Any agent
npx skills add strikersam/autonomous-ai-agency --skill repowise-intelligence
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code, Codex.

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 repowise-intelligence

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/repowise-intelligence/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/repowise-intelligence)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/repowise-intelligence"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/repowise-intelligence/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for repowise-intelligence

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/repowise-intelligence"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/repowise-intelligence.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,195 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 12
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 13
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
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.1 $0.00042 $0.01195
Opus 5 $0.00021 $0.00598
Sonnet 5 $0.00008 $0.00239
Haiku 4.5 $0.00004 $0.00120

Measured 11d ago against content hash a2bd1ba5e912, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

repowise-intelligence 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 11d 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.

.agents/skills/repowise-intelligence/SKILL.md · 131 lines

How it starts

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

Skill: repowise-intelligence

Purpose

Provides codebase intelligence layers inspired by repowise (https://github.com/repowise-dev/repowise). Enables AI agents to understand the repository at a deeper level through:

  • Dependency graph intelligence (file and symbol relationships)
  • Git intelligence (history, ownership, co-changes)
  • Documentation intelligence (auto-generated docs with freshness scoring)
  • Decision intelligence (architectural decisions from git history)

When to Use

  • When an agent needs to understand "why" code was built a certain way
  • Before making significant changes to understand impact and relationships
  • When trying to reduce token usage by getting targeted context instead of reading full files
  • When implementing features that benefit from understanding code ownership and change patterns
  • When needing to answer complex questions about the codebase efficiently

Directory Structure

This skill creates and manages:

.Codex/skills/repowise-intelligence/
  intelligence/             ← Intelligence data storage
    dependency_graph.json   ← File and symbol dependency graph
    git_history.json        ← Git history analysis (hotspots, ownership, co-changes)
    documentation/          ← Auto-generated documentation for modules/files
    decisions.json          ← Architectural decisions extracted from git history
  INDEX.md                  ← Overview of available intelligence

Intelligence Layers

1. Graph Intelligence (Dependency Graph)

  • Parses files to build file-level and symbol-level dependency graphs
  • Handles import aliases, barrel re-exports, namespace imports
  • Tracks heritage (extends, implements, etc.)
  • Uses community detection to find logical modules
  • Calculates centrality measures (PageRank, betweenness) to identify important code

2. Git Intelligence

  • Analyzes git history for:
    • Hotspot files (high churn × high complexity)
    • Ownership percentages per contributor
    • Co-change pairs (files that change together without import links)
    • Significant commit messages explaining evolution

Read the full file on GitHub · 131 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. 11d ago First seen · 131 lines · 42 tokens per session scan A a2bd1ba5e912

Subscribe to this mod's changes

repowise-intelligence is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 1,195 once invoked, about $0.0002 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.