jfox-cli 0.9.0__tar.gz → 0.10.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (203) hide show
  1. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/CHANGELOG.md +18 -0
  2. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/PKG-INFO +30 -1
  3. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/README.md +29 -0
  4. jfox_cli-0.10.0/docs/superpowers/plans/2026-06-02-todo-note-type.md +1645 -0
  5. jfox_cli-0.10.0/docs/superpowers/specs/2026-06-02-todo-note-type-design.md +169 -0
  6. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/__init__.py +1 -1
  7. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/cli.py +64 -1
  8. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/ledger.py +125 -73
  9. jfox_cli-0.10.0/jfox/auto_summary/loop.py +99 -0
  10. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/runner.py +104 -21
  11. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/scanner.py +27 -1
  12. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/cli.py +82 -19
  13. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/daemon/process.py +60 -0
  14. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/daemon/server.py +10 -6
  15. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/global_config.py +8 -6
  16. jfox_cli-0.10.0/jfox/utils.py +27 -0
  17. jfox_cli-0.10.0/package.json +12 -0
  18. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/pyproject.toml +1 -1
  19. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/README.md +47 -2
  20. jfox_cli-0.10.0/skills-recommend/pi/jfox-ci/SKILL.md +81 -0
  21. jfox_cli-0.10.0/skills-recommend/pi/jfox-common/SKILL.md +380 -0
  22. jfox_cli-0.10.0/skills-recommend/pi/jfox-ingest/SKILL.md +253 -0
  23. jfox_cli-0.10.0/skills-recommend/pi/jfox-organize/SKILL.md +153 -0
  24. jfox_cli-0.10.0/skills-recommend/pi/jfox-release/SKILL.md +173 -0
  25. jfox_cli-0.10.0/skills-recommend/pi/jfox-search/SKILL.md +115 -0
  26. jfox_cli-0.10.0/skills-recommend/pi/jfox-session-summary/SKILL.md +125 -0
  27. jfox_cli-0.10.0/tests/unit/test_auto_summary_defaults.py +27 -0
  28. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_auto_summary_ledger.py +61 -0
  29. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_auto_summary_runner.py +131 -18
  30. jfox_cli-0.10.0/tests/unit/test_auto_summary_status.py +204 -0
  31. jfox_cli-0.10.0/tests/unit/test_daemon_cli.py +179 -0
  32. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_daemon_process.py +71 -0
  33. jfox_cli-0.10.0/tests/unit/test_scanner_list.py +59 -0
  34. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/uv.lock +2 -2
  35. jfox_cli-0.9.0/jfox/auto_summary/loop.py +0 -85
  36. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.claude/settings.local.json +0 -0
  37. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.claude/skills/ci/SKILL.md +0 -0
  38. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.claude/skills/release/SKILL.md +0 -0
  39. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.claude/skills/release/release_helper.py +0 -0
  40. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.claude-plugin/marketplace.json +0 -0
  41. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.githooks/pre-push +0 -0
  42. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.github/workflows/integration-test.yml +0 -0
  43. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.github/workflows/publish.yml +0 -0
  44. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.gitignore +0 -0
  45. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/.python-version +0 -0
  46. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/AGENTS.md +0 -0
  47. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/CLAUDE.md +0 -0
  48. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/DEVELOPMENT_PLAN.md +0 -0
  49. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/SESSION.md +0 -0
  50. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/SESSION_SUMMARY.md +0 -0
  51. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/claude-code-plugin-guide.md +0 -0
  52. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/installation.md +0 -0
  53. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-11-bulk-import-bm25-fix.md +0 -0
  54. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-11-edit-command.md +0 -0
  55. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-11-unify-format-option.md +0 -0
  56. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-ci-coverage-optimization.md +0 -0
  57. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-edit-content-file.md +0 -0
  58. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-fix-index-rebuild-clear.md +0 -0
  59. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-fix-index-verify-id-mismatch.md +0 -0
  60. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-fix-jfox-health-skill-kb-param.md +0 -0
  61. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-index-kb-param.md +0 -0
  62. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-lazy-import-perf.md +0 -0
  63. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-12-skill-redesign.md +0 -0
  64. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-add-content-file.md +0 -0
  65. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-bulk-import-vectorstore-init.md +0 -0
  66. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-ingest-log-command.md +0 -0
  67. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-ingest-skill-sync.md +0 -0
  68. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-suppress-third-party-logging.md +0 -0
  69. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-13-sync-skills-with-cli.md +0 -0
  70. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-14-sync-docs-daemon-show.md +0 -0
  71. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-15-gpu-embedding.md +0 -0
  72. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-15-make-daemon-deps-required.md +0 -0
  73. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-15-session-summary-confirmation.md +0 -0
  74. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-16-fix-windows-daemon-console-window.md +0 -0
  75. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-18-daemon-timeout-and-index-rebuild.md +0 -0
  76. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-22-release-skill.md +0 -0
  77. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-26-fix-daemon-deprecation-warnings.md +0 -0
  78. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-27-intranet-model-download.md +0 -0
  79. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-28-tag-filtering.md +0 -0
  80. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-04-29-daemon-stop-fix.md +0 -0
  81. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-03-jfox-check.md +0 -0
  82. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-03-list-notes-skip-summary.md +0 -0
  83. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-03-log-level-fix.md +0 -0
  84. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-04-list-notes-index.md +0 -0
  85. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-06-atomic-write.md +0 -0
  86. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-09-session-note-type.md +0 -0
  87. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-10-jfox-plugin.md +0 -0
  88. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-19-fix-last-used-never.md +0 -0
  89. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/plans/2026-05-20-modelscope-migration.md +0 -0
  90. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-03-bugfixes-design.md +0 -0
  91. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-12-skill-redesign-design.md +0 -0
  92. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-13-pr-auto-code-review-design.md +0 -0
  93. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-14-show-command-design.md +0 -0
  94. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-15-gpu-embedding-design.md +0 -0
  95. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-15-session-summary-confirmation-design.md +0 -0
  96. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-21-release-skill-design.md +0 -0
  97. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-26-fix-daemon-deprecation-warnings-design.md +0 -0
  98. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-27-intranet-model-download-design.md +0 -0
  99. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-28-tag-filtering-design.md +0 -0
  100. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-29-daemon-stop-fix-design.md +0 -0
  101. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-04-30-jfox-kb-env-var-design.md +0 -0
  102. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-03-jfox-check-design.md +0 -0
  103. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-03-list-notes-skip-summary-design.md +0 -0
  104. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-03-log-level-fix-design.md +0 -0
  105. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-04-list-notes-index-design.md +0 -0
  106. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-06-atomic-write-design.md +0 -0
  107. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-09-jfox-plugin-design.md +0 -0
  108. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-09-session-note-type-design.md +0 -0
  109. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/superpowers/specs/2026-05-20-modelscope-migration-design.md +0 -0
  110. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/docs/troubleshooting.md +0 -0
  111. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jessica-jones-static-cable.md +0 -0
  112. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/__main__.py +0 -0
  113. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/__init__.py +0 -0
  114. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/auto_summary/extractor.py +0 -0
  115. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/bm25_index.py +0 -0
  116. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/config.py +0 -0
  117. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/daemon/__init__.py +0 -0
  118. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/daemon/__main__.py +0 -0
  119. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/daemon/client.py +0 -0
  120. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/embedding_backend.py +0 -0
  121. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/formatters.py +0 -0
  122. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/git_extractor.py +0 -0
  123. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/graph.py +0 -0
  124. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/indexer.py +0 -0
  125. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/kb_manager.py +0 -0
  126. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/model_downloader.py +0 -0
  127. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/models.py +0 -0
  128. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/note.py +0 -0
  129. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/note_index.py +0 -0
  130. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/performance.py +0 -0
  131. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/search_engine.py +0 -0
  132. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/template.py +0 -0
  133. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/template_cli.py +0 -0
  134. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/jfox/vector_store.py +0 -0
  135. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/.claude-plugin/plugin.json +0 -0
  136. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/skills/ingest/SKILL.md +0 -0
  137. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/skills/manage/SKILL.md +0 -0
  138. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/skills/organize/SKILL.md +0 -0
  139. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/skills/search/SKILL.md +0 -0
  140. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/packages/cc-plugin/skills/session-summary/SKILL.md +0 -0
  141. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/pytest.ini +0 -0
  142. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/run_full_test.ps1 +0 -0
  143. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/scripts/download-model-intranet.sh +0 -0
  144. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/kimi-cli/jfox-common/SKILL.md +0 -0
  145. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/kimi-cli/jfox-ingest/SKILL.md +0 -0
  146. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/kimi-cli/jfox-organize/SKILL.md +0 -0
  147. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/kimi-cli/jfox-search/SKILL.md +0 -0
  148. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/skills-recommend/kimi-cli/jfox-session-summary/SKILL.md +0 -0
  149. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/COVERAGE_PLAN.md +0 -0
  150. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/MIGRATION.md +0 -0
  151. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/TESTS.md +0 -0
  152. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/conftest.py +0 -0
  153. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/integration/__init__.py +0 -0
  154. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/integration/test_backlinks.py +0 -0
  155. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/integration/test_model_download.py +0 -0
  156. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/integration/test_tag_filter_cli.py +0 -0
  157. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/performance/__init__.py +0 -0
  158. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/performance/test_performance.py +0 -0
  159. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_advanced_features.py +0 -0
  160. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_cli_format.py +0 -0
  161. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_config_set_unit.py +0 -0
  162. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_config_unit.py +0 -0
  163. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_core_workflow.py +0 -0
  164. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_embedding_device.py +0 -0
  165. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_hybrid_search.py +0 -0
  166. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_integration.py +0 -0
  167. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_kb_current.py +0 -0
  168. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/test_suggest_links.py +0 -0
  169. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/__init__.py +0 -0
  170. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_atomic_write.py +0 -0
  171. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_auto_summary_extractor.py +0 -0
  172. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_auto_summary_scanner.py +0 -0
  173. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_bm25_batch.py +0 -0
  174. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_check.py +0 -0
  175. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_content_file.py +0 -0
  176. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_edit.py +0 -0
  177. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_embedding_local_load.py +0 -0
  178. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_format_unify.py +0 -0
  179. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_formatters.py +0 -0
  180. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_git_extractor.py +0 -0
  181. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_global_config.py +0 -0
  182. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_index_kb_param.py +0 -0
  183. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_indexer_clear_before_rebuild.py +0 -0
  184. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_indexer_verify.py +0 -0
  185. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_kb_manager.py +0 -0
  186. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_lazy_import.py +0 -0
  187. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_list_notes_skip.py +0 -0
  188. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_logging_config.py +0 -0
  189. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_model_downloader.py +0 -0
  190. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_note_index.py +0 -0
  191. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_release_helper.py +0 -0
  192. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_session_note.py +0 -0
  193. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_show.py +0 -0
  194. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_tag_filter.py +0 -0
  195. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_template.py +0 -0
  196. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_template_cli.py +0 -0
  197. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_use_kb_env_var.py +0 -0
  198. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/unit/test_vector_store_clear.py +0 -0
  199. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/utils/__init__.py +0 -0
  200. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/utils/assertions.py +0 -0
  201. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/utils/jfox_cli.py +0 -0
  202. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/utils/note_generator.py +0 -0
  203. {jfox_cli-0.9.0 → jfox_cli-0.10.0}/tests/utils/temp_kb.py +0 -0
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to jfox-cli will be documented in this file.
4
4
 
5
+ ## [0.10.0] - 2026-06-06
6
+
7
+ ### Features
8
+ - **auto-summary**: progress visibility + remove 7-day scan limit (#235)
9
+ - **daemon**: interactive auto-summary prompt on daemon start (#233)
10
+ - add pi skills and package.json for pi-package support
11
+ - **daemon**: add restart command
12
+
13
+ ### Fixes
14
+ - Issue #224 CR leftovers — atomic write + CAS + interruptible Popen + threading.Event (#236)
15
+
16
+ ### Changes
17
+ - **README**: add auto-summary section with implementation details
18
+ - ignore pr-monitor state and tmp issue body files
19
+ - add superpowers plans and spec for recent work
20
+
21
+ [0.10.0]: https://github.com/zhuxixi/jfox/compare/v0.9.0...v0.10.0
22
+
5
23
  ## [0.9.0] - 2026-05-22
6
24
 
7
25
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jfox-cli
3
- Version: 0.9.0
3
+ Version: 0.10.0
4
4
  Summary: JFox - Zettelkasten 知识管理 CLI 工具
5
5
  Project-URL: Homepage, https://github.com/zhuxixi/jfox
6
6
  Project-URL: Repository, https://github.com/zhuxixi/jfox
@@ -363,6 +363,35 @@ jfox query "Luhmann's methodology" --depth 2
363
363
  | `jfox daemon stop` | Stop embedding daemon |
364
364
  | `jfox daemon status` | Show daemon PID, port, model info |
365
365
 
366
+ ### Auto-Summary
367
+
368
+ Auto-summary runs inside the daemon to automatically archive Claude Code sessions into your knowledge base. It scans `~/.claude/projects/` for finished sessions, generates a structured summary via `claude -p`, and writes it as a `session` type note.
369
+
370
+ A session is considered "finished" when its file has not been modified for `idle_threshold` minutes (default: 30).
371
+
372
+ | Command | Description |
373
+ |---------|-------------|
374
+ | `jfox auto-summary enable` | Enable auto-summary in daemon |
375
+ | `jfox auto-summary disable` | Disable auto-summary |
376
+ | `jfox auto-summary status` | Show config and ledger statistics |
377
+ | `jfox auto-summary scan` | List sessions that would be processed |
378
+ | `jfox auto-summary run` | Manually trigger a summary round |
379
+ | `jfox auto-summary run --dry-run` | Preview without writing |
380
+
381
+ **Key options:**
382
+ - `--interval` — Scan interval in minutes (default: 30)
383
+ - `--idle-threshold` — Minutes of inactivity to consider a session finished (default: 30)
384
+ - `--kb` — Target knowledge base for saved notes
385
+
386
+ **How it works:**
387
+
388
+ - Uses `claude -p` (non-interactive mode) to generate summaries from stdin/stdout
389
+ - Runs with `--permission-mode bypassPermissions` so the daemon never blocks on permission prompts
390
+ - Tracks processed sessions in `~/.zk_auto_summary_state.json` to avoid duplicates; transient failures are retried up to 3 times before giving up
391
+ - A session is eligible only after its file has been idle for `idle_threshold` minutes (no new content)
392
+
393
+ > **Privacy note:** Auto-summary sends session text to Anthropic API via `claude -p` to generate summaries. Only session content is transmitted.
394
+
366
395
  ### Global Options
367
396
 
368
397
  | Option | Description |
@@ -324,6 +324,35 @@ jfox query "Luhmann's methodology" --depth 2
324
324
  | `jfox daemon stop` | Stop embedding daemon |
325
325
  | `jfox daemon status` | Show daemon PID, port, model info |
326
326
 
327
+ ### Auto-Summary
328
+
329
+ Auto-summary runs inside the daemon to automatically archive Claude Code sessions into your knowledge base. It scans `~/.claude/projects/` for finished sessions, generates a structured summary via `claude -p`, and writes it as a `session` type note.
330
+
331
+ A session is considered "finished" when its file has not been modified for `idle_threshold` minutes (default: 30).
332
+
333
+ | Command | Description |
334
+ |---------|-------------|
335
+ | `jfox auto-summary enable` | Enable auto-summary in daemon |
336
+ | `jfox auto-summary disable` | Disable auto-summary |
337
+ | `jfox auto-summary status` | Show config and ledger statistics |
338
+ | `jfox auto-summary scan` | List sessions that would be processed |
339
+ | `jfox auto-summary run` | Manually trigger a summary round |
340
+ | `jfox auto-summary run --dry-run` | Preview without writing |
341
+
342
+ **Key options:**
343
+ - `--interval` — Scan interval in minutes (default: 30)
344
+ - `--idle-threshold` — Minutes of inactivity to consider a session finished (default: 30)
345
+ - `--kb` — Target knowledge base for saved notes
346
+
347
+ **How it works:**
348
+
349
+ - Uses `claude -p` (non-interactive mode) to generate summaries from stdin/stdout
350
+ - Runs with `--permission-mode bypassPermissions` so the daemon never blocks on permission prompts
351
+ - Tracks processed sessions in `~/.zk_auto_summary_state.json` to avoid duplicates; transient failures are retried up to 3 times before giving up
352
+ - A session is eligible only after its file has been idle for `idle_threshold` minutes (no new content)
353
+
354
+ > **Privacy note:** Auto-summary sends session text to Anthropic API via `claude -p` to generate summaries. Only session content is transmitted.
355
+
327
356
  ### Global Options
328
357
 
329
358
  | Option | Description |