code-analyze 0.1.1

Analyze code structure and relationships using tree-sitter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tasks.skill]
description = "Build and package skill with binary"
run = """
cargo build --release
DIST="dist/code-analyze"
rm -rf "$DIST"
mkdir -p "$DIST/scripts"
cp target/release/analyze "$DIST/scripts/"
cp SKILL.md "$DIST/"
echo "Packaged: $DIST/"
ls -lh "$DIST/" "$DIST/scripts/"
"""

[tasks.lint]
description = "Run clippy and check formatting"
run = "cargo clippy -- -D warnings && cargo fmt --check"