jfox-cli 0.9.0__tar.gz → 1.0.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.
- jfox_cli-1.0.0/.github/ISSUE_TEMPLATE/bug_report.yml +129 -0
- jfox_cli-1.0.0/.github/ISSUE_TEMPLATE/config.yml +8 -0
- jfox_cli-1.0.0/.github/ISSUE_TEMPLATE/docs_improvement.yml +54 -0
- jfox_cli-1.0.0/.github/ISSUE_TEMPLATE/feature_request.yml +73 -0
- jfox_cli-1.0.0/.github/PULL_REQUEST_TEMPLATE.md +65 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/CHANGELOG.md +40 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/PKG-INFO +54 -1
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/README.md +53 -0
- jfox_cli-1.0.0/docs/superpowers/plans/2026-06-02-todo-note-type.md +1645 -0
- jfox_cli-1.0.0/docs/superpowers/plans/2026-06-16-kimi-code-auto-summary.md +1136 -0
- jfox_cli-1.0.0/docs/superpowers/plans/2026-06-17-using-jfox-skill.md +271 -0
- jfox_cli-1.0.0/docs/superpowers/specs/2026-06-02-todo-note-type-design.md +169 -0
- jfox_cli-1.0.0/docs/superpowers/specs/2026-06-16-kimi-code-auto-summary-design.md +224 -0
- jfox_cli-1.0.0/docs/superpowers/specs/2026-06-17-using-jfox-skill-design.md +153 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/__init__.py +1 -1
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/cli.py +64 -1
- jfox_cli-1.0.0/jfox/auto_summary/kimi_source.py +225 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/ledger.py +141 -73
- jfox_cli-1.0.0/jfox/auto_summary/loop.py +99 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/runner.py +151 -52
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/scanner.py +28 -1
- jfox_cli-1.0.0/jfox/auto_summary/sources.py +108 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/cli.py +100 -22
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/daemon/process.py +60 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/daemon/server.py +10 -6
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/global_config.py +16 -6
- jfox_cli-1.0.0/jfox/utils.py +27 -0
- jfox_cli-1.0.0/package.json +12 -0
- jfox_cli-1.0.0/packages/cc-plugin/skills/using-jfox/SKILL.md +67 -0
- jfox_cli-1.0.0/packages/kimi-plugin/README.md +107 -0
- jfox_cli-1.0.0/packages/kimi-plugin/kimi.plugin.json +21 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/jfox-ingest/SKILL.md +247 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/jfox-manage/SKILL.md +377 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/jfox-organize/SKILL.md +145 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/jfox-search/SKILL.md +108 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/jfox-session-summary/SKILL.md +123 -0
- jfox_cli-1.0.0/packages/kimi-plugin/skills/using-jfox/SKILL.md +100 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/pyproject.toml +1 -1
- jfox_cli-1.0.0/skills-recommend/README.md +133 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-ci/SKILL.md +81 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-common/SKILL.md +380 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-ingest/SKILL.md +253 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-organize/SKILL.md +153 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-release/SKILL.md +173 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-search/SKILL.md +115 -0
- jfox_cli-1.0.0/skills-recommend/pi/jfox-session-summary/SKILL.md +125 -0
- jfox_cli-1.0.0/tests/integration/test_auto_summary_kimi.py +82 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_advanced_features.py +21 -2
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_cli_format.py +38 -0
- jfox_cli-1.0.0/tests/unit/test_auto_summary_config_sources.py +32 -0
- jfox_cli-1.0.0/tests/unit/test_auto_summary_defaults.py +27 -0
- jfox_cli-1.0.0/tests/unit/test_auto_summary_ledger.py +191 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_auto_summary_runner.py +157 -24
- jfox_cli-1.0.0/tests/unit/test_auto_summary_status.py +204 -0
- jfox_cli-1.0.0/tests/unit/test_daemon_cli.py +179 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_daemon_process.py +86 -3
- jfox_cli-1.0.0/tests/unit/test_kimi_extractor.py +219 -0
- jfox_cli-1.0.0/tests/unit/test_kimi_scanner.py +43 -0
- jfox_cli-1.0.0/tests/unit/test_ledger_migration.py +69 -0
- jfox_cli-1.0.0/tests/unit/test_runner_multi_source.py +63 -0
- jfox_cli-1.0.0/tests/unit/test_scanner_list.py +59 -0
- jfox_cli-1.0.0/tests/unit/test_session_file_source.py +22 -0
- jfox_cli-1.0.0/tests/unit/test_session_source.py +49 -0
- jfox_cli-1.0.0/tests/unit/test_system_prompt_sections.py +11 -0
- jfox_cli-1.0.0/tests/unit/test_using_jfox_skill.py +78 -0
- jfox_cli-1.0.0/uv.lock +3612 -0
- jfox_cli-0.9.0/jfox/auto_summary/loop.py +0 -85
- jfox_cli-0.9.0/skills-recommend/README.md +0 -71
- jfox_cli-0.9.0/tests/unit/test_auto_summary_ledger.py +0 -126
- jfox_cli-0.9.0/uv.lock +0 -3612
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.claude/settings.local.json +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.claude/skills/ci/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.claude/skills/release/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.claude/skills/release/release_helper.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.claude-plugin/marketplace.json +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.githooks/pre-push +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.github/workflows/integration-test.yml +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.github/workflows/publish.yml +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.gitignore +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/.python-version +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/AGENTS.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/CLAUDE.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/DEVELOPMENT_PLAN.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/SESSION.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/SESSION_SUMMARY.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/claude-code-plugin-guide.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/installation.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-11-bulk-import-bm25-fix.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-11-edit-command.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-11-unify-format-option.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-ci-coverage-optimization.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-edit-content-file.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-fix-index-rebuild-clear.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-fix-index-verify-id-mismatch.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-fix-jfox-health-skill-kb-param.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-index-kb-param.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-lazy-import-perf.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-12-skill-redesign.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-add-content-file.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-bulk-import-vectorstore-init.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-ingest-log-command.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-ingest-skill-sync.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-suppress-third-party-logging.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-13-sync-skills-with-cli.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-14-sync-docs-daemon-show.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-15-gpu-embedding.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-15-make-daemon-deps-required.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-15-session-summary-confirmation.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-16-fix-windows-daemon-console-window.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-18-daemon-timeout-and-index-rebuild.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-22-release-skill.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-26-fix-daemon-deprecation-warnings.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-27-intranet-model-download.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-28-tag-filtering.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-04-29-daemon-stop-fix.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-03-jfox-check.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-03-list-notes-skip-summary.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-03-log-level-fix.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-04-list-notes-index.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-06-atomic-write.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-09-session-note-type.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-10-jfox-plugin.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-19-fix-last-used-never.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/plans/2026-05-20-modelscope-migration.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-03-bugfixes-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-12-skill-redesign-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-13-pr-auto-code-review-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-14-show-command-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-15-gpu-embedding-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-15-session-summary-confirmation-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-21-release-skill-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-26-fix-daemon-deprecation-warnings-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-27-intranet-model-download-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-28-tag-filtering-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-29-daemon-stop-fix-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-04-30-jfox-kb-env-var-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-03-jfox-check-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-03-list-notes-skip-summary-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-03-log-level-fix-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-04-list-notes-index-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-06-atomic-write-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-09-jfox-plugin-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-09-session-note-type-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/superpowers/specs/2026-05-20-modelscope-migration-design.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/docs/troubleshooting.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jessica-jones-static-cable.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/__main__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/auto_summary/extractor.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/bm25_index.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/config.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/daemon/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/daemon/__main__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/daemon/client.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/embedding_backend.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/formatters.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/git_extractor.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/graph.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/indexer.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/kb_manager.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/model_downloader.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/models.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/note.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/note_index.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/performance.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/search_engine.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/template.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/template_cli.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/jfox/vector_store.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/.claude-plugin/plugin.json +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/skills/ingest/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/skills/manage/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/skills/organize/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/skills/search/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/packages/cc-plugin/skills/session-summary/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/pytest.ini +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/run_full_test.ps1 +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/scripts/download-model-intranet.sh +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/skills-recommend/kimi-cli/jfox-common/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/skills-recommend/kimi-cli/jfox-ingest/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/skills-recommend/kimi-cli/jfox-organize/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/skills-recommend/kimi-cli/jfox-search/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/skills-recommend/kimi-cli/jfox-session-summary/SKILL.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/COVERAGE_PLAN.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/MIGRATION.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/TESTS.md +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/conftest.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/integration/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/integration/test_backlinks.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/integration/test_model_download.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/integration/test_tag_filter_cli.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/performance/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/performance/test_performance.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_config_set_unit.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_config_unit.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_core_workflow.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_embedding_device.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_hybrid_search.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_integration.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_kb_current.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/test_suggest_links.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_atomic_write.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_auto_summary_extractor.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_auto_summary_scanner.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_bm25_batch.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_check.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_content_file.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_edit.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_embedding_local_load.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_format_unify.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_formatters.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_git_extractor.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_global_config.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_index_kb_param.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_indexer_clear_before_rebuild.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_indexer_verify.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_kb_manager.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_lazy_import.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_list_notes_skip.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_logging_config.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_model_downloader.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_note_index.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_release_helper.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_session_note.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_show.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_tag_filter.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_template.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_template_cli.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_use_kb_env_var.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/unit/test_vector_store_clear.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/utils/__init__.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/utils/assertions.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/utils/jfox_cli.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.0}/tests/utils/note_generator.py +0 -0
- {jfox_cli-0.9.0 → jfox_cli-1.0.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,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,46 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to jfox-cli will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.0] - 2026-06-18
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
- **auto-summary**: support Kimi Code session + 5-section summary notes (#248)
|
|
9
|
+
- **cli**: jfox list 增加 Out/In backlinks 计数列 (#253) (#254)
|
|
10
|
+
- **cc-plugin**: add using-jfox overview/routing skill (#243) (#251)
|
|
11
|
+
- add Kimi Code plugin packages/kimi-plugin (#239)
|
|
12
|
+
|
|
13
|
+
### Changes
|
|
14
|
+
- add GitHub PR and issue templates (#241)
|
|
15
|
+
|
|
16
|
+
[1.0.0]: https://github.com/zhuxixi/jfox/compare/v0.10.0...v1.0.0
|
|
17
|
+
|
|
18
|
+
## [Unreleased]
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
- auto-summary 支持 Kimi Code session(`~/.kimi-code/sessions/`),与 Claude Code 共存;新增 `session_sources`/`kimi_sessions_dir` 配置(默认 claude+kimi 都启用,auto-detect 目录)。(#242)
|
|
22
|
+
- 总结笔记升级为五段结构(背景/做了什么/关键决策/技术细节/未决事项),更具上下文感。(#242)
|
|
23
|
+
|
|
24
|
+
### Changes
|
|
25
|
+
- auto-summary ledger 去重 key 加来源前缀(`claude:`/`kimi:`),旧数据自动迁移。
|
|
26
|
+
|
|
27
|
+
## [0.10.0] - 2026-06-06
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
- **auto-summary**: progress visibility + remove 7-day scan limit (#235)
|
|
31
|
+
- **daemon**: interactive auto-summary prompt on daemon start (#233)
|
|
32
|
+
- add pi skills and package.json for pi-package support
|
|
33
|
+
- **daemon**: add restart command
|
|
34
|
+
|
|
35
|
+
### Fixes
|
|
36
|
+
- Issue #224 CR leftovers — atomic write + CAS + interruptible Popen + threading.Event (#236)
|
|
37
|
+
|
|
38
|
+
### Changes
|
|
39
|
+
- **README**: add auto-summary section with implementation details
|
|
40
|
+
- ignore pr-monitor state and tmp issue body files
|
|
41
|
+
- add superpowers plans and spec for recent work
|
|
42
|
+
|
|
43
|
+
[0.10.0]: https://github.com/zhuxixi/jfox/compare/v0.9.0...v0.10.0
|
|
44
|
+
|
|
5
45
|
## [0.9.0] - 2026-05-22
|
|
6
46
|
|
|
7
47
|
### Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jfox-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.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 |
|
|
@@ -374,6 +403,30 @@ jfox query "Luhmann's methodology" --depth 2
|
|
|
374
403
|
|
|
375
404
|
---
|
|
376
405
|
|
|
406
|
+
## Agent Plugins
|
|
407
|
+
|
|
408
|
+
JFox 提供主流 AI Agent 的插件/技能集成:
|
|
409
|
+
|
|
410
|
+
### Claude Code
|
|
411
|
+
|
|
412
|
+
- 插件目录:`packages/cc-plugin/`
|
|
413
|
+
- 安装(marketplace 上架后):`/plugin marketplace add zhuxixi/jfox`
|
|
414
|
+
- 包含 5 个 skill:manage、search、ingest、organize、session-summary
|
|
415
|
+
|
|
416
|
+
### Kimi Code CLI
|
|
417
|
+
|
|
418
|
+
- 插件目录:`packages/kimi-plugin/`
|
|
419
|
+
- 安装:在 Kimi Code CLI TUI 中执行 `/plugins install github:zhuxixi/jfox?path=packages/kimi-plugin`,或使用本地 zip
|
|
420
|
+
- 包含 6 个 skill:`using-jfox`(会话启动自动加载)、`jfox-manage`、`jfox-search`、`jfox-ingest`、`jfox-organize`、`jfox-session-summary`
|
|
421
|
+
- 详见:`packages/kimi-plugin/README.md`
|
|
422
|
+
|
|
423
|
+
### 其他 Agent
|
|
424
|
+
|
|
425
|
+
- `skills-recommend/pi/` 提供 pi coding agent 的技能包
|
|
426
|
+
- `skills-recommend/kimi-cli/` 保留旧版 Kimi CLI 手动复制 skill(已弃用)
|
|
427
|
+
|
|
428
|
+
---
|
|
429
|
+
|
|
377
430
|
## Note Format
|
|
378
431
|
|
|
379
432
|
### Directory Structure
|
|
@@ -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 |
|
|
@@ -335,6 +364,30 @@ jfox query "Luhmann's methodology" --depth 2
|
|
|
335
364
|
|
|
336
365
|
---
|
|
337
366
|
|
|
367
|
+
## Agent Plugins
|
|
368
|
+
|
|
369
|
+
JFox 提供主流 AI Agent 的插件/技能集成:
|
|
370
|
+
|
|
371
|
+
### Claude Code
|
|
372
|
+
|
|
373
|
+
- 插件目录:`packages/cc-plugin/`
|
|
374
|
+
- 安装(marketplace 上架后):`/plugin marketplace add zhuxixi/jfox`
|
|
375
|
+
- 包含 5 个 skill:manage、search、ingest、organize、session-summary
|
|
376
|
+
|
|
377
|
+
### Kimi Code CLI
|
|
378
|
+
|
|
379
|
+
- 插件目录:`packages/kimi-plugin/`
|
|
380
|
+
- 安装:在 Kimi Code CLI TUI 中执行 `/plugins install github:zhuxixi/jfox?path=packages/kimi-plugin`,或使用本地 zip
|
|
381
|
+
- 包含 6 个 skill:`using-jfox`(会话启动自动加载)、`jfox-manage`、`jfox-search`、`jfox-ingest`、`jfox-organize`、`jfox-session-summary`
|
|
382
|
+
- 详见:`packages/kimi-plugin/README.md`
|
|
383
|
+
|
|
384
|
+
### 其他 Agent
|
|
385
|
+
|
|
386
|
+
- `skills-recommend/pi/` 提供 pi coding agent 的技能包
|
|
387
|
+
- `skills-recommend/kimi-cli/` 保留旧版 Kimi CLI 手动复制 skill(已弃用)
|
|
388
|
+
|
|
389
|
+
---
|
|
390
|
+
|
|
338
391
|
## Note Format
|
|
339
392
|
|
|
340
393
|
### Directory Structure
|