Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Codebase Packager

  • 55 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with ai & agent building tasks during AI-assisted development.

About

codebase-packager is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • codebase-packager
  • AI & Agent Building
  • AI-coding skill

Codebase Packager by the numbers

  • 55 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #6,846 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill codebase-packager

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs55
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

TLDR Expert

Overview

Achieves high-fidelity codebase comprehension at a fraction of the token cost through semantic layers, structured digests, and advanced context packaging. Combines Repomix for context packing, Gitingest for repository digests, and llm-tldr for graph-based code analysis.

When to use: Reducing prompt overhead for large codebases, onboarding to unfamiliar repositories, mapping cross-file dependencies, creating AI-optimized context bundles.

When NOT to use: Small single-file tasks, final implementation debugging (read the full file), real-time code editing.

Quick Reference

PatternTool / CommandKey Points
Context packingrepomix --include "src/**" --compressPackage subdirectories into AI-optimized bundles
Signatures onlyrepomix --include "src/**" --compressCompression extracts signatures via Tree-sitter
Repository digestgitingest . -o digest.txtPrompt-friendly summary for quick onboarding
Dependency contexttldr context funcName --project .LLM-ready context for a function with 95% token saving
Caller tracingtldr impact functionName .Reverse call graph to assess change blast radius
Forward call graphtldr calls .Build forward call graph across the project
Semantic searchtldr semantic "session expiry" .Find logic by meaning when naming is inconsistent
Architecture audittldr arch .Detect circular deps, layer violations, dead code
Dead code findertldr dead .Find unreachable functions with zero callers
File extractiontldr extract src/file.tsExtract AST (functions, classes, imports) from a file
Secret scanningRepomix built-in secretlintEnsure context bundles contain no keys or PII

Common Mistakes

MistakeCorrect Pattern
Reading entire large files without checking structure firstRun tldr extract to get signatures before reading full files
Using grep for dependency tracing across filesUse tldr impact for reverse call graph that understands dynamic imports
Packing node_modules or dist into context bundlesConfigure Repomix ignore-list to exclude generated and vendor directories
Assuming semantic search results are exhaustiveVerify top matches against actual source and cross-reference with rg
Running Repomix without compression on large directoriesUse --compress flag to stay within context window limits
Including irrelevant context that dilutes signal qualityFollow top-down priority: index, signatures, core logic, then adjacent context

Delegation

  • Repository structure discovery: Use Explore agent to map directory layout and identify key modules before building context bundles
  • Multi-step context packing workflow: Use Task agent to run Gitingest digest, Repomix compression, and llm-tldr indexing in sequence
  • Architecture analysis and planning: Use Plan agent to design context engineering strategy for large monorepos

References

  • Context Engineering Patterns -- packing strategies, XML tagging, signal-to-noise optimization, warm-up prompts
  • Repomix and Gitingest Mastery -- configuration, compression mode, digest generation, Tree-sitter extraction
  • Semantic Graph Analysis -- llm-tldr CLI tools, impact analysis, semantic search, architectural audits

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.