v0.2.0 — LLM Wiki, Kiro, Gitclaw
LLM Wiki (inspired by Karpathy's LLM Wiki pattern)
Andrej Karpathy described a pattern where the LLM incrementally builds and maintains a persistent wiki from raw sources — instead of RAG's "rediscover from scratch" approach. gitagent now ships this as a first-class template:
gitagent init --template llm-wikiScaffolds a complete wiki-maintainer agent with three skills:
- wiki-ingest — process sources into interlinked wiki pages with cross-references
- wiki-query — search the wiki, synthesize answers, file valuable results back as new pages
- wiki-lint — health-check for contradictions, orphan pages, stale claims, and knowledge gaps
The pattern maps directly to gitagent's existing architecture: knowledge/ = raw sources, memory/wiki/ = the compiled wiki, skills/ = the operations. No new CLI features needed — it works with every adapter (Claude, Codex, Gemini, Cursor, gitclaw, etc.).
See the full example at examples/llm-wiki/.
New Adapters
- AWS Kiro CLI — export to
.kiro/agents/<name>.json+prompt.md(gitagent export -f kiro) - gitclaw SDK — full export + runner with
provider:modelformat conversion (gitagent export -f gitclaw,gitagent run -a gitclaw)
Improvements
extendsresolution —gitagent installnow clones parent agents;export -f claude-codemerges parent SOUL.md, RULES.md, and skills--forceflag forgitagent install— re-install existing dependencies- Git source detection expanded to support Bitbucket and GitLab (not just GitHub)
Fixes
- Duplicate
requiredOptioncrash fixed (v0.1.8 regression) - Broken switch fallthrough in export/import commands
- Command injection prevention in install command (
execFileSync)