codebase-packager

Performs semantic code intelligence and token optimization through context engineering and automated context packing. Use when reducing token overhead for large codebases, creating repository digests with Gitingest, packaging code context with Repomix, or tracing cross-file dependencies with llm-tldr.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "codebase-packager" with this command: npx skills add oakoss/agent-skills/oakoss-agent-skills-codebase-packager

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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

github-cli

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

tanstack-cli

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

typescript-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

tanstack-devtools

No summary provided by upstream source.

Repository SourceNeeds Review