← ClaudeAtlas

code_analysislisted

Codebase reading, dependency mapping, architecture tracing, symbol lookup.
jxoesneon/Ciel · ★ 1 · AI & Automation · score 71
Install: claude install-skill jxoesneon/Ciel
# code_analysis Read and understand code. ## Operations - `code.map(dir)` — build a high-level map (languages, modules, entry points). - `code.symbol(name, path?)` — definitions + references. - `code.deps(path)` — import graph for a file. - `code.trace(start_symbol)` — call chain. - `code.architecture(dir)` — summarize top-level architecture. ## I/O Contract ```yaml io_contract: input: { op, path_or_symbol, "scope?" } output: { result: structured_map } idempotent: true side_effects: [fs] ``` ## Strategy Prefer existing LSPs / language-aware tools (tree-sitter, ripgrep, `cargo tree`, `npm ls`, `pydeps`). Falls back to regex/grep heuristics.