Changelog

Release history.

Every release note comes directly from the website content bundle.

v0.1.0 · 2026-05-01

Initial Release

released

  • Auto Capture on Save with configurable debounce
  • VS Code status bar integration with Quick-Pick command menu
  • Intelligent file ranking — changed files, source files, and project metadata surfaced first
  • 8 context profiles: compact, balanced, deep, gpt-4o, claude-3-5-sonnet, gemini-1.5-flash, gemini-1.5-pro, llama-3-8b
  • Git integration: branch, status, staged/unstaged diffs, recent commits
  • Automatic secret redaction: OpenAI keys, GitHub PATs, Slack tokens, AWS keys, Google API keys
  • Structural outlines for truncated files
  • TODO / FIXME / HACK detection across all selected files
  • Real-time token estimation
  • CLI: make, watch, init, config commands
  • .tokencap.json project config with include/exclude glob patterns
  • Support for 40+ file extensions across all major languages
  • VSIX extension package for VS Code / Cursor

v0.2.0 · 2026-06-01

Intelligence Layer

released

  • Project Knowledge Graph: TOKENCAP_GRAPH.md — maps file imports, exports, and requires across all JS/TS source files
  • Context Memory Layer: TOKENCAP_MEMORY.md — developer context from .tokencap-notes.md combined with Git state
  • Auto-creates .tokencap-notes.md from a structured template if missing
  • Node classification: route, api, component, service, database, config, unknown
  • Import parsing: ES import/export and CommonJS require — local specifiers only
  • Path resolution with extension guessing (.ts, .tsx, .js, .jsx, .mjs, .cjs) and index fallbacks
  • New CLI commands: tokencap graph and tokencap memory
  • tokencap make now generates all three files in one command
  • TOKENCAP.md now includes a TokenCap Intelligence Files reference block
  • .gitignore updated — TOKENCAP_GRAPH.md, TOKENCAP_MEMORY.md, .tokencap-notes.md excluded from git
  • VS Code extension: graph and memory generated on every auto-capture cycle
  • Watcher updated to ignore new generated files and prevent re-trigger loops
  • All new modules in src/graph/ and src/memory/ — fully modular