github open-gitagent/gitagent v0.2.0

4 hours ago

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-wiki

Scaffolds 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:model format conversion (gitagent export -f gitclaw, gitagent run -a gitclaw)

Improvements

  • extends resolutiongitagent install now clones parent agents; export -f claude-code merges parent SOUL.md, RULES.md, and skills
  • --force flag for gitagent install — re-install existing dependencies
  • Git source detection expanded to support Bitbucket and GitLab (not just GitHub)

Fixes

  • Duplicate requiredOption crash fixed (v0.1.8 regression)
  • Broken switch fallthrough in export/import commands
  • Command injection prevention in install command (execFileSync)

Full Changelog

v0.1.9...v0.2.0

Don't miss a new gitagent release

NewReleases is sending notifications on new releases.