jfox-cli 0.10.0__tar.gz → 1.1.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 (242) hide show
  1. jfox_cli-1.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +129 -0
  2. jfox_cli-1.1.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
  3. jfox_cli-1.1.0/.github/ISSUE_TEMPLATE/docs_improvement.yml +54 -0
  4. jfox_cli-1.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +73 -0
  5. jfox_cli-1.1.0/.github/PULL_REQUEST_TEMPLATE.md +65 -0
  6. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/CHANGELOG.md +33 -0
  7. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/PKG-INFO +32 -1
  8. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/README.md +31 -0
  9. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/installation.md +26 -0
  10. jfox_cli-1.1.0/docs/superpowers/plans/2026-06-16-kimi-code-auto-summary.md +1136 -0
  11. jfox_cli-1.1.0/docs/superpowers/plans/2026-06-17-index-rebuild-backlinks.md +166 -0
  12. jfox_cli-1.1.0/docs/superpowers/plans/2026-06-17-using-jfox-skill.md +271 -0
  13. jfox_cli-1.1.0/docs/superpowers/plans/2026-06-18-self-update-command.md +175 -0
  14. jfox_cli-1.1.0/docs/superpowers/specs/2026-06-16-kimi-code-auto-summary-design.md +224 -0
  15. jfox_cli-1.1.0/docs/superpowers/specs/2026-06-17-index-rebuild-backlinks-design.md +99 -0
  16. jfox_cli-1.1.0/docs/superpowers/specs/2026-06-17-using-jfox-skill-design.md +153 -0
  17. jfox_cli-1.1.0/docs/superpowers/specs/2026-06-18-archive-soft-delete-design.md +160 -0
  18. jfox_cli-1.1.0/docs/superpowers/specs/2026-06-18-self-update-command-design.md +149 -0
  19. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/__init__.py +1 -1
  20. jfox_cli-1.1.0/jfox/auto_summary/kimi_source.py +225 -0
  21. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/ledger.py +16 -0
  22. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/runner.py +47 -31
  23. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/scanner.py +1 -0
  24. jfox_cli-1.1.0/jfox/auto_summary/sources.py +108 -0
  25. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/cli.py +707 -13
  26. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/global_config.py +8 -0
  27. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/models.py +18 -0
  28. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/note.py +76 -2
  29. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/note_index.py +49 -2
  30. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/search_engine.py +164 -56
  31. jfox_cli-1.1.0/packages/cc-plugin/skills/using-jfox/SKILL.md +67 -0
  32. jfox_cli-1.1.0/packages/kimi-plugin/README.md +107 -0
  33. jfox_cli-1.1.0/packages/kimi-plugin/kimi.plugin.json +21 -0
  34. jfox_cli-1.1.0/packages/kimi-plugin/skills/jfox-ingest/SKILL.md +247 -0
  35. jfox_cli-1.1.0/packages/kimi-plugin/skills/jfox-manage/SKILL.md +377 -0
  36. jfox_cli-1.1.0/packages/kimi-plugin/skills/jfox-organize/SKILL.md +145 -0
  37. jfox_cli-1.1.0/packages/kimi-plugin/skills/jfox-search/SKILL.md +108 -0
  38. jfox_cli-1.1.0/packages/kimi-plugin/skills/jfox-session-summary/SKILL.md +123 -0
  39. jfox_cli-1.1.0/packages/kimi-plugin/skills/using-jfox/SKILL.md +100 -0
  40. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/pyproject.toml +1 -1
  41. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/README.md +28 -11
  42. jfox_cli-1.1.0/tests/integration/test_auto_summary_kimi.py +82 -0
  43. jfox_cli-1.1.0/tests/integration/test_index_rebuild_backlinks.py +207 -0
  44. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_advanced_features.py +21 -2
  45. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_cli_format.py +38 -0
  46. jfox_cli-1.1.0/tests/unit/test_archive.py +494 -0
  47. jfox_cli-1.1.0/tests/unit/test_auto_summary_config_sources.py +32 -0
  48. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_ledger.py +43 -39
  49. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_runner.py +26 -6
  50. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_daemon_process.py +15 -3
  51. jfox_cli-1.1.0/tests/unit/test_kimi_extractor.py +219 -0
  52. jfox_cli-1.1.0/tests/unit/test_kimi_scanner.py +43 -0
  53. jfox_cli-1.1.0/tests/unit/test_ledger_migration.py +69 -0
  54. jfox_cli-1.1.0/tests/unit/test_rebuild_backlinks_impl.py +218 -0
  55. jfox_cli-1.1.0/tests/unit/test_runner_multi_source.py +63 -0
  56. jfox_cli-1.1.0/tests/unit/test_session_file_source.py +22 -0
  57. jfox_cli-1.1.0/tests/unit/test_session_source.py +49 -0
  58. jfox_cli-1.1.0/tests/unit/test_system_prompt_sections.py +11 -0
  59. jfox_cli-1.1.0/tests/unit/test_update.py +587 -0
  60. jfox_cli-1.1.0/tests/unit/test_using_jfox_skill.py +78 -0
  61. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/utils/jfox_cli.py +5 -2
  62. jfox_cli-1.1.0/uv.lock +3612 -0
  63. jfox_cli-0.10.0/uv.lock +0 -3612
  64. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.claude/settings.local.json +0 -0
  65. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.claude/skills/ci/SKILL.md +0 -0
  66. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.claude/skills/release/SKILL.md +0 -0
  67. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.claude/skills/release/release_helper.py +0 -0
  68. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.claude-plugin/marketplace.json +0 -0
  69. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.githooks/pre-push +0 -0
  70. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.github/workflows/integration-test.yml +0 -0
  71. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.github/workflows/publish.yml +0 -0
  72. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.gitignore +0 -0
  73. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/.python-version +0 -0
  74. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/AGENTS.md +0 -0
  75. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/CLAUDE.md +0 -0
  76. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/DEVELOPMENT_PLAN.md +0 -0
  77. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/SESSION.md +0 -0
  78. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/SESSION_SUMMARY.md +0 -0
  79. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/claude-code-plugin-guide.md +0 -0
  80. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-11-bulk-import-bm25-fix.md +0 -0
  81. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-11-edit-command.md +0 -0
  82. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-11-unify-format-option.md +0 -0
  83. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-ci-coverage-optimization.md +0 -0
  84. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-edit-content-file.md +0 -0
  85. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-fix-index-rebuild-clear.md +0 -0
  86. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-fix-index-verify-id-mismatch.md +0 -0
  87. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-fix-jfox-health-skill-kb-param.md +0 -0
  88. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-index-kb-param.md +0 -0
  89. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-lazy-import-perf.md +0 -0
  90. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-12-skill-redesign.md +0 -0
  91. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-add-content-file.md +0 -0
  92. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-bulk-import-vectorstore-init.md +0 -0
  93. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-ingest-log-command.md +0 -0
  94. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-ingest-skill-sync.md +0 -0
  95. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-suppress-third-party-logging.md +0 -0
  96. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-13-sync-skills-with-cli.md +0 -0
  97. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-14-sync-docs-daemon-show.md +0 -0
  98. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-15-gpu-embedding.md +0 -0
  99. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-15-make-daemon-deps-required.md +0 -0
  100. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-15-session-summary-confirmation.md +0 -0
  101. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-16-fix-windows-daemon-console-window.md +0 -0
  102. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-18-daemon-timeout-and-index-rebuild.md +0 -0
  103. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-22-release-skill.md +0 -0
  104. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-26-fix-daemon-deprecation-warnings.md +0 -0
  105. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-27-intranet-model-download.md +0 -0
  106. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-28-tag-filtering.md +0 -0
  107. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-04-29-daemon-stop-fix.md +0 -0
  108. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-03-jfox-check.md +0 -0
  109. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-03-list-notes-skip-summary.md +0 -0
  110. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-03-log-level-fix.md +0 -0
  111. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-04-list-notes-index.md +0 -0
  112. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-06-atomic-write.md +0 -0
  113. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-09-session-note-type.md +0 -0
  114. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-10-jfox-plugin.md +0 -0
  115. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-19-fix-last-used-never.md +0 -0
  116. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-05-20-modelscope-migration.md +0 -0
  117. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/plans/2026-06-02-todo-note-type.md +0 -0
  118. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-03-bugfixes-design.md +0 -0
  119. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-12-skill-redesign-design.md +0 -0
  120. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-13-pr-auto-code-review-design.md +0 -0
  121. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-14-show-command-design.md +0 -0
  122. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-15-gpu-embedding-design.md +0 -0
  123. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-15-session-summary-confirmation-design.md +0 -0
  124. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-21-release-skill-design.md +0 -0
  125. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-26-fix-daemon-deprecation-warnings-design.md +0 -0
  126. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-27-intranet-model-download-design.md +0 -0
  127. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-28-tag-filtering-design.md +0 -0
  128. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-29-daemon-stop-fix-design.md +0 -0
  129. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-04-30-jfox-kb-env-var-design.md +0 -0
  130. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-03-jfox-check-design.md +0 -0
  131. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-03-list-notes-skip-summary-design.md +0 -0
  132. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-03-log-level-fix-design.md +0 -0
  133. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-04-list-notes-index-design.md +0 -0
  134. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-06-atomic-write-design.md +0 -0
  135. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-09-jfox-plugin-design.md +0 -0
  136. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-09-session-note-type-design.md +0 -0
  137. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-05-20-modelscope-migration-design.md +0 -0
  138. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/superpowers/specs/2026-06-02-todo-note-type-design.md +0 -0
  139. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/docs/troubleshooting.md +0 -0
  140. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jessica-jones-static-cable.md +0 -0
  141. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/__main__.py +0 -0
  142. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/__init__.py +0 -0
  143. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/cli.py +0 -0
  144. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/extractor.py +0 -0
  145. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/auto_summary/loop.py +0 -0
  146. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/bm25_index.py +0 -0
  147. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/config.py +0 -0
  148. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/daemon/__init__.py +0 -0
  149. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/daemon/__main__.py +0 -0
  150. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/daemon/client.py +0 -0
  151. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/daemon/process.py +0 -0
  152. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/daemon/server.py +0 -0
  153. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/embedding_backend.py +0 -0
  154. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/formatters.py +0 -0
  155. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/git_extractor.py +0 -0
  156. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/graph.py +0 -0
  157. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/indexer.py +0 -0
  158. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/kb_manager.py +0 -0
  159. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/model_downloader.py +0 -0
  160. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/performance.py +0 -0
  161. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/template.py +0 -0
  162. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/template_cli.py +0 -0
  163. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/utils.py +0 -0
  164. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/jfox/vector_store.py +0 -0
  165. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/package.json +0 -0
  166. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/.claude-plugin/plugin.json +0 -0
  167. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/skills/ingest/SKILL.md +0 -0
  168. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/skills/manage/SKILL.md +0 -0
  169. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/skills/organize/SKILL.md +0 -0
  170. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/skills/search/SKILL.md +0 -0
  171. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/packages/cc-plugin/skills/session-summary/SKILL.md +0 -0
  172. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/pytest.ini +0 -0
  173. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/run_full_test.ps1 +0 -0
  174. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/scripts/download-model-intranet.sh +0 -0
  175. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/kimi-cli/jfox-common/SKILL.md +0 -0
  176. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/kimi-cli/jfox-ingest/SKILL.md +0 -0
  177. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/kimi-cli/jfox-organize/SKILL.md +0 -0
  178. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/kimi-cli/jfox-search/SKILL.md +0 -0
  179. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/kimi-cli/jfox-session-summary/SKILL.md +0 -0
  180. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-ci/SKILL.md +0 -0
  181. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-common/SKILL.md +0 -0
  182. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-ingest/SKILL.md +0 -0
  183. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-organize/SKILL.md +0 -0
  184. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-release/SKILL.md +0 -0
  185. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-search/SKILL.md +0 -0
  186. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/skills-recommend/pi/jfox-session-summary/SKILL.md +0 -0
  187. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/COVERAGE_PLAN.md +0 -0
  188. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/MIGRATION.md +0 -0
  189. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/TESTS.md +0 -0
  190. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/conftest.py +0 -0
  191. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/integration/__init__.py +0 -0
  192. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/integration/test_backlinks.py +0 -0
  193. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/integration/test_model_download.py +0 -0
  194. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/integration/test_tag_filter_cli.py +0 -0
  195. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/performance/__init__.py +0 -0
  196. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/performance/test_performance.py +0 -0
  197. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_config_set_unit.py +0 -0
  198. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_config_unit.py +0 -0
  199. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_core_workflow.py +0 -0
  200. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_embedding_device.py +0 -0
  201. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_hybrid_search.py +0 -0
  202. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_integration.py +0 -0
  203. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_kb_current.py +0 -0
  204. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/test_suggest_links.py +0 -0
  205. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/__init__.py +0 -0
  206. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_atomic_write.py +0 -0
  207. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_defaults.py +0 -0
  208. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_extractor.py +0 -0
  209. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_scanner.py +0 -0
  210. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_auto_summary_status.py +0 -0
  211. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_bm25_batch.py +0 -0
  212. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_check.py +0 -0
  213. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_content_file.py +0 -0
  214. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_daemon_cli.py +0 -0
  215. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_edit.py +0 -0
  216. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_embedding_local_load.py +0 -0
  217. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_format_unify.py +0 -0
  218. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_formatters.py +0 -0
  219. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_git_extractor.py +0 -0
  220. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_global_config.py +0 -0
  221. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_index_kb_param.py +0 -0
  222. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_indexer_clear_before_rebuild.py +0 -0
  223. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_indexer_verify.py +0 -0
  224. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_kb_manager.py +0 -0
  225. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_lazy_import.py +0 -0
  226. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_list_notes_skip.py +0 -0
  227. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_logging_config.py +0 -0
  228. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_model_downloader.py +0 -0
  229. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_note_index.py +0 -0
  230. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_release_helper.py +0 -0
  231. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_scanner_list.py +0 -0
  232. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_session_note.py +0 -0
  233. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_show.py +0 -0
  234. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_tag_filter.py +0 -0
  235. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_template.py +0 -0
  236. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_template_cli.py +0 -0
  237. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_use_kb_env_var.py +0 -0
  238. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/unit/test_vector_store_clear.py +0 -0
  239. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/utils/__init__.py +0 -0
  240. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/utils/assertions.py +0 -0
  241. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/utils/note_generator.py +0 -0
  242. {jfox_cli-0.10.0 → jfox_cli-1.1.0}/tests/utils/temp_kb.py +0 -0
@@ -0,0 +1,129 @@
1
+ name: "🐛 Bug 报告"
2
+ description: 报告一个 bug — 功能损坏、崩溃或行为异常。
3
+ title: "[Bug]: "
4
+ labels: ["bug"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ 感谢报告 bug!请填写以下内容,帮助我们快速复现和修复。
10
+
11
+ **提交前请确认**:
12
+ - [ ] 搜索 [现有 issues](https://github.com/zhuxixi/jfox/issues) 避免重复
13
+ - [ ] 升级到最新版本(`pip install --upgrade jfox` 或 `uv tool upgrade jfox`)确认 bug 仍存在
14
+
15
+ - type: textarea
16
+ id: description
17
+ attributes:
18
+ label: Bug 描述
19
+ description: 清晰描述什么问题。包含错误消息、堆栈跟踪或截图。
20
+ placeholder: |
21
+ 发生了什么?期望发生什么?
22
+ validations:
23
+ required: true
24
+
25
+ - type: textarea
26
+ id: reproduction
27
+ attributes:
28
+ label: 复现步骤
29
+ description: 触发 bug 的最小步骤。越具体,修复越快。
30
+ placeholder: |
31
+ 1. 运行 `jfox search "xxx"`
32
+ 2. 输入 "..."
33
+ 3. 出现错误:...
34
+ validations:
35
+ required: true
36
+
37
+ - type: textarea
38
+ id: expected
39
+ attributes:
40
+ label: 期望行为
41
+ description: 应该发生什么?
42
+ validations:
43
+ required: true
44
+
45
+ - type: textarea
46
+ id: actual
47
+ attributes:
48
+ label: 实际行为
49
+ description: 实际发生了什么?包含完整的错误输出。
50
+ validations:
51
+ required: true
52
+
53
+ - type: dropdown
54
+ id: component
55
+ attributes:
56
+ label: 受影响组件
57
+ description: jfox 的哪个部分受影响?
58
+ multiple: true
59
+ options:
60
+ - CLI 命令
61
+ - 笔记管理(add/edit/delete/show)
62
+ - 搜索(search/suggest_links)
63
+ - 知识图谱(graph)
64
+ - 向量索引(embedding/vector_store)
65
+ - 守护进程(daemon)
66
+ - 配置(config/kb_manager)
67
+ - 安装/部署
68
+ - 其他
69
+ validations:
70
+ required: true
71
+
72
+ - type: input
73
+ id: os
74
+ attributes:
75
+ label: 操作系统
76
+ description: 例如 Ubuntu 24.04, macOS 15.2, Windows 11
77
+ placeholder: Ubuntu 24.04
78
+ validations:
79
+ required: true
80
+
81
+ - type: input
82
+ id: python-version
83
+ attributes:
84
+ label: Python 版本
85
+ description: "python --version 的输出"
86
+ placeholder: "3.11.9"
87
+ validations:
88
+ required: true
89
+
90
+ - type: input
91
+ id: uv-version
92
+ attributes:
93
+ label: uv 版本(如使用 uv 安装)
94
+ description: "uv --version 的输出"
95
+ placeholder: "0.6.0"
96
+
97
+ - type: input
98
+ id: jfox-version
99
+ attributes:
100
+ label: jfox 版本
101
+ description: "jfox --version 的输出"
102
+ placeholder: "0.10.0"
103
+ validations:
104
+ required: true
105
+
106
+ - type: textarea
107
+ id: logs
108
+ attributes:
109
+ label: 错误日志 / 堆栈跟踪
110
+ description: 完整的错误输出。自动格式化。
111
+ render: shell
112
+ validations:
113
+ required: true
114
+
115
+ - type: textarea
116
+ id: root-cause
117
+ attributes:
118
+ label: 根因分析(可选)
119
+ description: |
120
+ 如果你已经排查到代码层面的根因,请分享。包含文件路径、行号、代码片段。这会大大加速修复。
121
+ placeholder: |
122
+ 问题在 `jfox/cli.py` 第 123 行。`load_note()` 未处理 frontmatter 缺失的情况...
123
+
124
+ - type: checkboxes
125
+ id: pr-ready
126
+ attributes:
127
+ label: 是否愿意提交 PR 修复?
128
+ options:
129
+ - label: 我想自己修复并提交 PR
@@ -0,0 +1,8 @@
1
+ blank_issues_enabled: true
2
+ contact_links:
3
+ - name: 📖 文档
4
+ url: https://github.com/zhuxixi/jfox/blob/main/README.md
5
+ about: 查看 README 和文档。
6
+ - name: 🤝 贡献指南
7
+ url: https://github.com/zhuxixi/jfox/blob/main/AGENTS.md
8
+ about: 提交 PR 前请阅读。
@@ -0,0 +1,54 @@
1
+ name: "📝 文档改进"
2
+ description: 报告文档错误、缺失或改进建议。
3
+ title: "[Docs]: "
4
+ labels: ["documentation"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ 感谢帮助我们改进文档!
10
+
11
+ - type: textarea
12
+ id: location
13
+ attributes:
14
+ label: 文档位置
15
+ description: 指出需要改进的文档位置(文件路径或 URL)。
16
+ placeholder: |
17
+ README.md 第 45 行
18
+ AGENTS.md 的 "开发环境" 部分
19
+ https://github.com/zhuxixi/jfox/blob/main/docs/xxx.md
20
+ validations:
21
+ required: true
22
+
23
+ - type: textarea
24
+ id: problem
25
+ attributes:
26
+ label: 问题描述
27
+ description: 当前文档有什么问题?(错误、过时、缺失、不清晰)
28
+ placeholder: |
29
+ 文档说 "uv sync" 但应该是 "uv sync --extra dev"...
30
+ validations:
31
+ required: true
32
+
33
+ - type: textarea
34
+ id: suggestion
35
+ attributes:
36
+ label: 改进建议
37
+ description: 你希望怎么改?
38
+ placeholder: |
39
+ 添加 `--extra dev` 说明,并解释为什么需要 dev 依赖...
40
+ validations:
41
+ required: true
42
+
43
+ - type: textarea
44
+ id: additional
45
+ attributes:
46
+ label: 补充信息(可选)
47
+ description: 截图、参考链接或其他上下文。
48
+
49
+ - type: checkboxes
50
+ id: pr-ready
51
+ attributes:
52
+ label: 是否愿意提交 PR 改进?
53
+ options:
54
+ - label: 我想自己修改并提交 PR
@@ -0,0 +1,73 @@
1
+ name: "✨ 功能请求"
2
+ description: 建议新功能或改进。
3
+ title: "[Feature]: "
4
+ labels: ["enhancement"]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ 感谢提出建议!提交前请考虑:
10
+
11
+ - **搜索 [现有 issues](https://github.com/zhuxixi/jfox/issues)** — 可能有人已经提过类似建议。
12
+
13
+ - type: textarea
14
+ id: problem
15
+ attributes:
16
+ label: 问题或使用场景
17
+ description: 这个功能解决什么问题?你目前想做什么但做不到?
18
+ placeholder: |
19
+ 我想用 jfox 做... 但目前没有方法...
20
+ validations:
21
+ required: true
22
+
23
+ - type: textarea
24
+ id: solution
25
+ attributes:
26
+ label: 建议方案
27
+ description: 你认为应该怎么实现?尽可能具体 — CLI 参数、配置选项、交互行为。
28
+ placeholder: |
29
+ 添加 `--foo` 参数到 `jfox search` 命令...
30
+ 或:新增配置项 `bar.baz` 控制...
31
+ validations:
32
+ required: true
33
+
34
+ - type: textarea
35
+ id: alternatives
36
+ attributes:
37
+ label: 替代方案
38
+ description: 你考虑过其他方法吗?为什么建议方案更好?
39
+
40
+ - type: dropdown
41
+ id: type
42
+ attributes:
43
+ label: 功能类型
44
+ options:
45
+ - 新 CLI 命令
46
+ - 现有命令改进
47
+ - 笔记类型扩展
48
+ - 搜索/索引改进
49
+ - 知识图谱改进
50
+ - 守护进程/后端改进
51
+ - 配置/安装改进
52
+ - 性能优化
53
+ - 开发者体验(测试、文档、CI)
54
+ - 其他
55
+ validations:
56
+ required: true
57
+
58
+ - type: dropdown
59
+ id: scope
60
+ attributes:
61
+ label: 范围
62
+ description: 这个改动有多大?
63
+ options:
64
+ - 小(单个文件,< 50 行)
65
+ - 中(几个文件,< 300 行)
66
+ - 大(新模块或重大重构)
67
+
68
+ - type: checkboxes
69
+ id: pr-ready
70
+ attributes:
71
+ label: 贡献
72
+ options:
73
+ - label: 我想自己实现并提交 PR
@@ -0,0 +1,65 @@
1
+ ## 变更描述
2
+
3
+ <!-- 描述这次变更的内容。解决了什么问题?为什么选择这个方案? -->
4
+
5
+
6
+
7
+ ## 关联 Issue
8
+
9
+ <!-- 链接这次 PR 解决的 issue。如果没有,建议先创建一个。 -->
10
+
11
+ Fixes #
12
+
13
+ ## 变更类型
14
+
15
+ <!-- 勾选适用的选项 -->
16
+
17
+ - [ ] 🐛 Bug 修复(不破坏兼容性的修复)
18
+ - [ ] ✨ 新功能(不破坏兼容性的新增)
19
+ - [ ] 🔒 安全修复
20
+ - [ ] 📝 文档更新
21
+ - [ ] ✅ 测试(新增或改进测试覆盖)
22
+ - [ ] ♻️ 重构(无行为变化)
23
+ - [ ] ⚡️ 性能优化
24
+
25
+ ## 具体改动
26
+
27
+ <!-- 列出具体改动。包含代码文件路径。 -->
28
+
29
+ -
30
+
31
+ ## 测试步骤
32
+
33
+ <!-- 验证这次变更的步骤。对于 bug:复现步骤 + 修复证明。 -->
34
+
35
+ 1.
36
+ 2.
37
+ 3.
38
+
39
+ ## 检查清单
40
+
41
+ <!-- 提交前完成以下检查。 -->
42
+
43
+ ### 代码
44
+
45
+ - [ ] 我已阅读项目的 `AGENTS.md` 和开发规范
46
+ - [ ] 我的 commit 遵循 [Conventional Commits](https://www.conventionalcommits.org/)(`fix:`, `feat:`, `chore:`, `docs:` 等)
47
+ - [ ] 我搜索了 [现有 PR](https://github.com/zhuxixi/jfox/pulls) 确认没有重复
48
+ - [ ] 我的 PR 只包含与本次变更相关的改动(无无关提交)
49
+ - [ ] `uv run ruff check jfox/ tests/` 通过
50
+ - [ ] `uv run black jfox/ tests/` 通过
51
+ - [ ] `uv run pytest tests/ -m "not embedding and not slow"` 通过(快速测试)
52
+ - [ ] 我在本地测试通过:<!-- 例如 Ubuntu 24.04, macOS 15.2, Windows 11 -->
53
+
54
+ ### 文档与维护
55
+
56
+ <!-- 勾选适用的选项。如果不适用,勾选 "N/A"。 -->
57
+
58
+ - [ ] 我已更新相关文档(README, AGENTS.md, CHANGELOG)— 或 N/A
59
+ - [ ] 我已考虑跨平台影响(Windows, macOS, Linux)— 或 N/A
60
+ - [ ] 我已更新工具描述或 schema(如果有变更)— 或 N/A
61
+
62
+ ## 截图 / 日志
63
+
64
+ <!-- 如果适用,添加截图或日志输出展示修复/功能效果。 -->
65
+
@@ -2,6 +2,39 @@
2
2
 
3
3
  All notable changes to jfox-cli will be documented in this file.
4
4
 
5
+ ## [1.1.0] - 2026-06-21
6
+
7
+ ### Features
8
+ - **cli**: add self-update command (#258)
9
+ - 笔记归档/软删除功能(archive/unarchive) (#260)
10
+
11
+ ### Fixes
12
+ - **cli**: jfox index rebuild --backlinks recalculates wiki links and backlinks
13
+
14
+ [1.1.0]: https://github.com/zhuxixi/jfox/compare/v1.0.0...v1.1.0
15
+
16
+ ## [1.0.0] - 2026-06-18
17
+
18
+ ### Features
19
+ - **auto-summary**: support Kimi Code session + 5-section summary notes (#248)
20
+ - **cli**: jfox list 增加 Out/In backlinks 计数列 (#253) (#254)
21
+ - **cc-plugin**: add using-jfox overview/routing skill (#243) (#251)
22
+ - add Kimi Code plugin packages/kimi-plugin (#239)
23
+
24
+ ### Changes
25
+ - add GitHub PR and issue templates (#241)
26
+
27
+ [1.0.0]: https://github.com/zhuxixi/jfox/compare/v0.10.0...v1.0.0
28
+
29
+ ## [Unreleased]
30
+
31
+ ### Features
32
+ - auto-summary 支持 Kimi Code session(`~/.kimi-code/sessions/`),与 Claude Code 共存;新增 `session_sources`/`kimi_sessions_dir` 配置(默认 claude+kimi 都启用,auto-detect 目录)。(#242)
33
+ - 总结笔记升级为五段结构(背景/做了什么/关键决策/技术细节/未决事项),更具上下文感。(#242)
34
+
35
+ ### Changes
36
+ - auto-summary ledger 去重 key 加来源前缀(`claude:`/`kimi:`),旧数据自动迁移。
37
+
5
38
  ## [0.10.0] - 2026-06-06
6
39
 
7
40
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jfox-cli
3
- Version: 0.10.0
3
+ Version: 1.1.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
@@ -392,6 +392,13 @@ A session is considered "finished" when its file has not been modified for `idle
392
392
 
393
393
  > **Privacy note:** Auto-summary sends session text to Anthropic API via `claude -p` to generate summaries. Only session content is transmitted.
394
394
 
395
+ ### Self-Update
396
+
397
+ | Command | Description |
398
+ |---------|-------------|
399
+ | `jfox update` | Upgrade jfox to the latest version (auto-detects pip/pipx/uv) |
400
+ | `jfox update --json` | JSON output with before/after version info |
401
+
395
402
  ### Global Options
396
403
 
397
404
  | Option | Description |
@@ -403,6 +410,30 @@ A session is considered "finished" when its file has not been modified for `idle
403
410
 
404
411
  ---
405
412
 
413
+ ## Agent Plugins
414
+
415
+ JFox 提供主流 AI Agent 的插件/技能集成:
416
+
417
+ ### Claude Code
418
+
419
+ - 插件目录:`packages/cc-plugin/`
420
+ - 安装(marketplace 上架后):`/plugin marketplace add zhuxixi/jfox`
421
+ - 包含 5 个 skill:manage、search、ingest、organize、session-summary
422
+
423
+ ### Kimi Code CLI
424
+
425
+ - 插件目录:`packages/kimi-plugin/`
426
+ - 安装:在 Kimi Code CLI TUI 中执行 `/plugins install github:zhuxixi/jfox?path=packages/kimi-plugin`,或使用本地 zip
427
+ - 包含 6 个 skill:`using-jfox`(会话启动自动加载)、`jfox-manage`、`jfox-search`、`jfox-ingest`、`jfox-organize`、`jfox-session-summary`
428
+ - 详见:`packages/kimi-plugin/README.md`
429
+
430
+ ### 其他 Agent
431
+
432
+ - `skills-recommend/pi/` 提供 pi coding agent 的技能包
433
+ - `skills-recommend/kimi-cli/` 保留旧版 Kimi CLI 手动复制 skill(已弃用)
434
+
435
+ ---
436
+
406
437
  ## Note Format
407
438
 
408
439
  ### Directory Structure
@@ -353,6 +353,13 @@ A session is considered "finished" when its file has not been modified for `idle
353
353
 
354
354
  > **Privacy note:** Auto-summary sends session text to Anthropic API via `claude -p` to generate summaries. Only session content is transmitted.
355
355
 
356
+ ### Self-Update
357
+
358
+ | Command | Description |
359
+ |---------|-------------|
360
+ | `jfox update` | Upgrade jfox to the latest version (auto-detects pip/pipx/uv) |
361
+ | `jfox update --json` | JSON output with before/after version info |
362
+
356
363
  ### Global Options
357
364
 
358
365
  | Option | Description |
@@ -364,6 +371,30 @@ A session is considered "finished" when its file has not been modified for `idle
364
371
 
365
372
  ---
366
373
 
374
+ ## Agent Plugins
375
+
376
+ JFox 提供主流 AI Agent 的插件/技能集成:
377
+
378
+ ### Claude Code
379
+
380
+ - 插件目录:`packages/cc-plugin/`
381
+ - 安装(marketplace 上架后):`/plugin marketplace add zhuxixi/jfox`
382
+ - 包含 5 个 skill:manage、search、ingest、organize、session-summary
383
+
384
+ ### Kimi Code CLI
385
+
386
+ - 插件目录:`packages/kimi-plugin/`
387
+ - 安装:在 Kimi Code CLI TUI 中执行 `/plugins install github:zhuxixi/jfox?path=packages/kimi-plugin`,或使用本地 zip
388
+ - 包含 6 个 skill:`using-jfox`(会话启动自动加载)、`jfox-manage`、`jfox-search`、`jfox-ingest`、`jfox-organize`、`jfox-session-summary`
389
+ - 详见:`packages/kimi-plugin/README.md`
390
+
391
+ ### 其他 Agent
392
+
393
+ - `skills-recommend/pi/` 提供 pi coding agent 的技能包
394
+ - `skills-recommend/kimi-cli/` 保留旧版 Kimi CLI 手动复制 skill(已弃用)
395
+
396
+ ---
397
+
367
398
  ## Note Format
368
399
 
369
400
  ### Directory Structure
@@ -28,6 +28,32 @@ jfox --version
28
28
  pip install -e ".[dev]"
29
29
  ```
30
30
 
31
+ ## Upgrade
32
+
33
+ ```bash
34
+ # Auto-detect installation method and upgrade
35
+ jfox update
36
+
37
+ # JSON output with version info
38
+ jfox update --json
39
+ ```
40
+
41
+ If `jfox update` fails (e.g. behind a proxy or on an unsupported install method), use the manual command for your install method:
42
+
43
+ ```bash
44
+ # uv tool users
45
+ uv tool upgrade jfox-cli
46
+
47
+ # pipx users
48
+ pipx upgrade jfox-cli
49
+
50
+ # pip users
51
+ pip install --upgrade jfox-cli
52
+
53
+ # Development mode (git clone + uv sync --extra dev)
54
+ git pull && uv sync --extra dev
55
+ ```
56
+
31
57
  ## Uninstall
32
58
 
33
59
  ```bash