jfox-cli 0.8.0__tar.gz → 0.9.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 (195) hide show
  1. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.claude-plugin/marketplace.json +8 -5
  2. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.gitignore +2 -0
  3. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/CHANGELOG.md +21 -0
  4. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/CLAUDE.md +10 -0
  5. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/PKG-INFO +1 -1
  6. jfox_cli-0.9.0/docs/claude-code-plugin-guide.md +808 -0
  7. jfox_cli-0.9.0/docs/superpowers/plans/2026-05-06-atomic-write.md +420 -0
  8. jfox_cli-0.9.0/docs/superpowers/plans/2026-05-09-session-note-type.md +778 -0
  9. jfox_cli-0.9.0/docs/superpowers/plans/2026-05-10-jfox-plugin.md +240 -0
  10. jfox_cli-0.9.0/docs/superpowers/plans/2026-05-19-fix-last-used-never.md +296 -0
  11. jfox_cli-0.9.0/docs/superpowers/plans/2026-05-20-modelscope-migration.md +931 -0
  12. jfox_cli-0.9.0/docs/superpowers/specs/2026-05-06-atomic-write-design.md +55 -0
  13. jfox_cli-0.9.0/docs/superpowers/specs/2026-05-09-jfox-plugin-design.md +143 -0
  14. jfox_cli-0.9.0/docs/superpowers/specs/2026-05-09-session-note-type-design.md +138 -0
  15. jfox_cli-0.9.0/docs/superpowers/specs/2026-05-20-modelscope-migration-design.md +283 -0
  16. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/__init__.py +1 -1
  17. jfox_cli-0.9.0/jfox/auto_summary/__init__.py +27 -0
  18. jfox_cli-0.9.0/jfox/auto_summary/cli.py +350 -0
  19. jfox_cli-0.9.0/jfox/auto_summary/extractor.py +164 -0
  20. jfox_cli-0.9.0/jfox/auto_summary/ledger.py +253 -0
  21. jfox_cli-0.9.0/jfox/auto_summary/loop.py +85 -0
  22. jfox_cli-0.9.0/jfox/auto_summary/runner.py +575 -0
  23. jfox_cli-0.9.0/jfox/auto_summary/scanner.py +161 -0
  24. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/cli.py +5 -0
  25. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/config.py +13 -0
  26. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/daemon/process.py +25 -2
  27. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/daemon/server.py +84 -2
  28. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/embedding_backend.py +22 -1
  29. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/global_config.py +95 -1
  30. jfox_cli-0.9.0/jfox/model_downloader.py +402 -0
  31. jfox_cli-0.9.0/packages/cc-plugin/.claude-plugin/plugin.json +10 -0
  32. {jfox_cli-0.8.0/skills-recommend/claude-code/jfox-ingest → jfox_cli-0.9.0/packages/cc-plugin/skills/ingest}/SKILL.md +7 -16
  33. {jfox_cli-0.8.0/skills-recommend/claude-code/jfox-common → jfox_cli-0.9.0/packages/cc-plugin/skills/manage}/SKILL.md +95 -80
  34. {jfox_cli-0.8.0/skills-recommend/claude-code/jfox-organize → jfox_cli-0.9.0/packages/cc-plugin/skills/organize}/SKILL.md +16 -53
  35. {jfox_cli-0.8.0/skills-recommend/claude-code/jfox-search → jfox_cli-0.9.0/packages/cc-plugin/skills/search}/SKILL.md +1 -1
  36. {jfox_cli-0.8.0/skills-recommend/kimi-cli/jfox-session-summary → jfox_cli-0.9.0/packages/cc-plugin/skills/session-summary}/SKILL.md +6 -5
  37. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/pyproject.toml +1 -1
  38. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/skills-recommend/README.md +6 -28
  39. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/integration/test_model_download.py +39 -27
  40. jfox_cli-0.9.0/tests/unit/test_auto_summary_extractor.py +178 -0
  41. jfox_cli-0.9.0/tests/unit/test_auto_summary_ledger.py +126 -0
  42. jfox_cli-0.9.0/tests/unit/test_auto_summary_runner.py +364 -0
  43. jfox_cli-0.9.0/tests/unit/test_auto_summary_scanner.py +127 -0
  44. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_daemon_process.py +95 -0
  45. jfox_cli-0.9.0/tests/unit/test_embedding_local_load.py +92 -0
  46. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_global_config.py +42 -0
  47. jfox_cli-0.9.0/tests/unit/test_model_downloader.py +282 -0
  48. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_use_kb_env_var.py +54 -3
  49. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/uv.lock +1 -1
  50. jfox_cli-0.8.0/.claude-plugin/plugin.json +0 -22
  51. jfox_cli-0.8.0/commands/jfox-common.md +0 -6
  52. jfox_cli-0.8.0/commands/jfox-ingest.md +0 -6
  53. jfox_cli-0.8.0/commands/jfox-organize.md +0 -6
  54. jfox_cli-0.8.0/commands/jfox-search.md +0 -6
  55. jfox_cli-0.8.0/commands/jfox-session-summary.md +0 -6
  56. jfox_cli-0.8.0/jfox/model_downloader.py +0 -281
  57. jfox_cli-0.8.0/tests/unit/test_model_downloader.py +0 -135
  58. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.claude/settings.local.json +0 -0
  59. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.claude/skills/ci/SKILL.md +0 -0
  60. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.claude/skills/release/SKILL.md +0 -0
  61. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.claude/skills/release/release_helper.py +0 -0
  62. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.githooks/pre-push +0 -0
  63. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.github/workflows/integration-test.yml +0 -0
  64. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.github/workflows/publish.yml +0 -0
  65. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/.python-version +0 -0
  66. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/AGENTS.md +0 -0
  67. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/DEVELOPMENT_PLAN.md +0 -0
  68. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/README.md +0 -0
  69. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/SESSION.md +0 -0
  70. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/SESSION_SUMMARY.md +0 -0
  71. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/installation.md +0 -0
  72. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-11-bulk-import-bm25-fix.md +0 -0
  73. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-11-edit-command.md +0 -0
  74. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-11-unify-format-option.md +0 -0
  75. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-ci-coverage-optimization.md +0 -0
  76. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-edit-content-file.md +0 -0
  77. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-fix-index-rebuild-clear.md +0 -0
  78. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-fix-index-verify-id-mismatch.md +0 -0
  79. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-fix-jfox-health-skill-kb-param.md +0 -0
  80. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-index-kb-param.md +0 -0
  81. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-lazy-import-perf.md +0 -0
  82. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-12-skill-redesign.md +0 -0
  83. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-add-content-file.md +0 -0
  84. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-bulk-import-vectorstore-init.md +0 -0
  85. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-ingest-log-command.md +0 -0
  86. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-ingest-skill-sync.md +0 -0
  87. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-suppress-third-party-logging.md +0 -0
  88. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-13-sync-skills-with-cli.md +0 -0
  89. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-14-sync-docs-daemon-show.md +0 -0
  90. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-15-gpu-embedding.md +0 -0
  91. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-15-make-daemon-deps-required.md +0 -0
  92. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-15-session-summary-confirmation.md +0 -0
  93. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-16-fix-windows-daemon-console-window.md +0 -0
  94. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-18-daemon-timeout-and-index-rebuild.md +0 -0
  95. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-22-release-skill.md +0 -0
  96. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-26-fix-daemon-deprecation-warnings.md +0 -0
  97. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-27-intranet-model-download.md +0 -0
  98. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-28-tag-filtering.md +0 -0
  99. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-04-29-daemon-stop-fix.md +0 -0
  100. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-05-03-jfox-check.md +0 -0
  101. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-05-03-list-notes-skip-summary.md +0 -0
  102. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-05-03-log-level-fix.md +0 -0
  103. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/plans/2026-05-04-list-notes-index.md +0 -0
  104. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-03-bugfixes-design.md +0 -0
  105. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-12-skill-redesign-design.md +0 -0
  106. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-13-pr-auto-code-review-design.md +0 -0
  107. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-14-show-command-design.md +0 -0
  108. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-15-gpu-embedding-design.md +0 -0
  109. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-15-session-summary-confirmation-design.md +0 -0
  110. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-21-release-skill-design.md +0 -0
  111. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-26-fix-daemon-deprecation-warnings-design.md +0 -0
  112. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-27-intranet-model-download-design.md +0 -0
  113. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-28-tag-filtering-design.md +0 -0
  114. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-29-daemon-stop-fix-design.md +0 -0
  115. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-04-30-jfox-kb-env-var-design.md +0 -0
  116. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-05-03-jfox-check-design.md +0 -0
  117. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-05-03-list-notes-skip-summary-design.md +0 -0
  118. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-05-03-log-level-fix-design.md +0 -0
  119. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/superpowers/specs/2026-05-04-list-notes-index-design.md +0 -0
  120. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/docs/troubleshooting.md +0 -0
  121. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jessica-jones-static-cable.md +0 -0
  122. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/__main__.py +0 -0
  123. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/bm25_index.py +0 -0
  124. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/daemon/__init__.py +0 -0
  125. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/daemon/__main__.py +0 -0
  126. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/daemon/client.py +0 -0
  127. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/formatters.py +0 -0
  128. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/git_extractor.py +0 -0
  129. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/graph.py +0 -0
  130. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/indexer.py +0 -0
  131. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/kb_manager.py +0 -0
  132. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/models.py +0 -0
  133. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/note.py +0 -0
  134. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/note_index.py +0 -0
  135. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/performance.py +0 -0
  136. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/search_engine.py +0 -0
  137. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/template.py +0 -0
  138. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/template_cli.py +0 -0
  139. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/jfox/vector_store.py +0 -0
  140. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/pytest.ini +0 -0
  141. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/run_full_test.ps1 +0 -0
  142. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/scripts/download-model-intranet.sh +0 -0
  143. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/skills-recommend/kimi-cli/jfox-common/SKILL.md +0 -0
  144. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/skills-recommend/kimi-cli/jfox-ingest/SKILL.md +0 -0
  145. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/skills-recommend/kimi-cli/jfox-organize/SKILL.md +0 -0
  146. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/skills-recommend/kimi-cli/jfox-search/SKILL.md +0 -0
  147. {jfox_cli-0.8.0/skills-recommend/claude-code → jfox_cli-0.9.0/skills-recommend/kimi-cli}/jfox-session-summary/SKILL.md +0 -0
  148. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/COVERAGE_PLAN.md +0 -0
  149. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/MIGRATION.md +0 -0
  150. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/TESTS.md +0 -0
  151. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/conftest.py +0 -0
  152. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/integration/__init__.py +0 -0
  153. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/integration/test_backlinks.py +0 -0
  154. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/integration/test_tag_filter_cli.py +0 -0
  155. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/performance/__init__.py +0 -0
  156. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/performance/test_performance.py +0 -0
  157. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_advanced_features.py +0 -0
  158. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_cli_format.py +0 -0
  159. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_config_set_unit.py +0 -0
  160. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_config_unit.py +0 -0
  161. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_core_workflow.py +0 -0
  162. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_embedding_device.py +0 -0
  163. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_hybrid_search.py +0 -0
  164. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_integration.py +0 -0
  165. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_kb_current.py +0 -0
  166. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/test_suggest_links.py +0 -0
  167. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/__init__.py +0 -0
  168. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_atomic_write.py +0 -0
  169. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_bm25_batch.py +0 -0
  170. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_check.py +0 -0
  171. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_content_file.py +0 -0
  172. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_edit.py +0 -0
  173. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_format_unify.py +0 -0
  174. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_formatters.py +0 -0
  175. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_git_extractor.py +0 -0
  176. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_index_kb_param.py +0 -0
  177. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_indexer_clear_before_rebuild.py +0 -0
  178. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_indexer_verify.py +0 -0
  179. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_kb_manager.py +0 -0
  180. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_lazy_import.py +0 -0
  181. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_list_notes_skip.py +0 -0
  182. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_logging_config.py +0 -0
  183. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_note_index.py +0 -0
  184. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_release_helper.py +0 -0
  185. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_session_note.py +0 -0
  186. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_show.py +0 -0
  187. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_tag_filter.py +0 -0
  188. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_template.py +0 -0
  189. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_template_cli.py +0 -0
  190. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/unit/test_vector_store_clear.py +0 -0
  191. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/utils/__init__.py +0 -0
  192. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/utils/assertions.py +0 -0
  193. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/utils/jfox_cli.py +0 -0
  194. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/utils/note_generator.py +0 -0
  195. {jfox_cli-0.8.0 → jfox_cli-0.9.0}/tests/utils/temp_kb.py +0 -0
@@ -1,17 +1,20 @@
1
1
  {
2
2
  "name": "jfox-skills",
3
3
  "id": "jfox-skills",
4
- "owner": { "name": "zhuxixi" },
4
+ "owner": {
5
+ "name": "zhuxixi",
6
+ "url": "https://github.com/zhuxixi"
7
+ },
5
8
  "metadata": {
6
9
  "description": "JFox Zettelkasten 知识管理工具的 Claude Code 集成",
7
- "version": "0.1.0"
10
+ "version": "0.2.0"
8
11
  },
9
12
  "plugins": [
10
13
  {
11
14
  "name": "jfox",
12
- "source": "./",
13
- "description": "JFox 知识管理 CLI 的 Claude Code 集成——搜索、导入、整理、会话总结",
14
- "version": "0.1.0",
15
+ "source": "./packages/cc-plugin",
16
+ "description": "JFox 知识管理 CLI 的 Claude Code 集成——搜索、写入工作流(导入/整理/会话总结)与知识库管理",
17
+ "version": "0.2.0",
15
18
  "author": { "name": "zhuxixi" },
16
19
  "keywords": ["zettelkasten", "knowledge-management"],
17
20
  "category": "workflow"
@@ -47,3 +47,5 @@ cache/
47
47
  analysis_report.md
48
48
  kimi-export-*.md
49
49
  review_body*.md
50
+ .pr_monitor_state.json
51
+ .tmp_issue_body.md
@@ -2,6 +2,27 @@
2
2
 
3
3
  All notable changes to jfox-cli will be documented in this file.
4
4
 
5
+ ## [0.9.0] - 2026-05-22
6
+
7
+ ### Features
8
+ - replace hf-mirror.com with ModelScope for model download
9
+ - auto-summary daemon for Claude Code sessions
10
+
11
+ ### Fixes
12
+ - Last Used 始终显示 Never,日常操作未更新 last_used (#222)
13
+ - **plugin**: remove commands field, let Claude Code auto-discover (#214)
14
+ - **plugin**: correct commands paths in plugin.json (#213)
15
+
16
+ ### Changes
17
+ - ignore pr-monitor state and tmp issue body files
18
+ - add superpowers plans and spec for recent work
19
+ - document Claude Code plugin structure in CLAUDE.md (#220)
20
+ - **plugin**: rename kb skill to manage and dedup CRUD docs (#218)
21
+ - **plugin**: restructure plugin source for marketplace best practices (#217)
22
+ - add Claude Code plugin guide and design docs (#215)
23
+
24
+ [0.9.0]: https://github.com/zhuxixi/jfox/compare/v0.8.0...v0.9.0
25
+
5
26
  ## [0.8.0] - 2026-05-10
6
27
 
7
28
  ### Features
@@ -133,6 +133,16 @@ Four jobs in `.github/workflows/integration-test.yml`:
133
133
  - Set `PYTHONUTF8=1` and `chcp 65001` for encoding
134
134
  - HuggingFace mirror for China: `export HF_ENDPOINT=https://hf-mirror.com`
135
135
 
136
+ ## Claude Code Plugin
137
+
138
+ JFox ships as a Claude Code plugin. Two-tier structure:
139
+ - `.claude-plugin/marketplace.json` — top-level marketplace registry (version, description)
140
+ - `packages/cc-plugin/.claude-plugin/plugin.json` — plugin source metadata
141
+ - `packages/cc-plugin/skills/` — 5 skills: `search`, `ingest`, `manage`, `organize`, `session-summary`
142
+
143
+ **Plugin versioning**: bump version in both `plugin.json` AND `marketplace.json` together. Current: 0.2.0.
144
+ **Skill rename history**: `kb` → `manage` (v0.2.0) — "manage" is the canonical KB lifecycle + CRUD skill.
145
+
136
146
  ## Branch Rules
137
147
 
138
148
  - **main 是保护分支**,不能直接 commit 或 push。所有改动必须通过新分支 + PR 合入。
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jfox-cli
3
- Version: 0.8.0
3
+ Version: 0.9.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