nexus-cli 0.5.2__tar.gz → 0.6.1__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.
- nexus_cli-0.6.1/.STATUS +102 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/ci.yml +2 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/homebrew-release.yml +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/quality.yml +2 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/test.yml +5 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/CLAUDE.md +41 -25
- nexus_cli-0.6.1/ORCHESTRATE-nexus-enhancement.md +174 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/PKG-INFO +3 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/README.md +2 -1
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/TUTORIAL_GUIDE.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/TUTORIAL_QUICK_REF.md +6 -0
- nexus_cli-0.6.1/docs/adhd-quick-start.md +56 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/changelog.md +45 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/development/testing.md +8 -5
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/getting-started/configuration.md +27 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/getting-started/installation.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/getting-started/quickstart.md +8 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/guide/knowledge.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/guide/overview.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/guide/research.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/guide/teaching.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/guide/writing.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/index.md +27 -10
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/reference/api.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/reference/cli.md +36 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/reference/mcp.md +6 -0
- nexus_cli-0.6.1/docs/reference/refcard.md +89 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/first-steps.md +27 -7
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/graph-viz.md +8 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/tutorial-system.md +6 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/vault-setup.md +40 -8
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/zotero.md +8 -0
- nexus_cli-0.6.1/docs/workflows/index.md +98 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/mkdocs.yml +8 -1
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/__init__.py +1 -1
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/cli.py +77 -11
- nexus_cli-0.6.1/nexus/data/vault-spec.yaml +28 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/knowledge/vault.py +3 -3
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/teaching/courses.py +2 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/utils/config.py +1 -1
- nexus_cli-0.6.1/nexus/utils/help_text.py +216 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/utils/tutorial.py +2 -4
- nexus_cli-0.6.1/nexus/utils/vault_spec.py +108 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/writing/manuscript.py +3 -3
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/pyproject.toml +1 -1
- nexus_cli-0.6.1/tests/test_bibliography.py +502 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_cli.py +11 -4
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_cli_commands.py +10 -3
- nexus_cli-0.6.1/tests/test_cli_coverage.py +795 -0
- nexus_cli-0.6.1/tests/test_cli_integration.py +228 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_cli_research_commands.py +0 -21
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_cli_vault_commands.py +0 -1
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_cli_writing_commands.py +0 -2
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_config.py +2 -1
- nexus_cli-0.6.1/tests/test_courses.py +546 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_dogfooding.py +8 -4
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_graph_export.py +0 -1
- nexus_cli-0.6.1/tests/test_help_text.py +92 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_manuscript_batch.py +3 -4
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_tutorial.py +2 -5
- nexus_cli-0.6.1/tests/test_vault.py +409 -0
- nexus_cli-0.6.1/tests/test_vault_spec.py +253 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_zotero_client.py +2 -1
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/uv.lock +1 -1
- nexus_cli-0.5.2/.STATUS +0 -174
- nexus_cli-0.5.2/tests/test_bibliography.py +0 -178
- nexus_cli-0.5.2/tests/test_cli_integration.py +0 -214
- nexus_cli-0.5.2/tests/test_courses.py +0 -98
- nexus_cli-0.5.2/tests/test_vault.py +0 -218
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/docs.yml +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/publish.yml +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.github/workflows/release.yml +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.gitignore +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/.python-version +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/CI_CD_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/DOCUMENTATION_UPDATE_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/FINAL_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/HOMEBREW_FORMULA_SETUP.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/INSTALLATION_TROUBLESHOOTING.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/PLANNING.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/README_BADGES.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/RELEASE_NOTES_v0.4.0.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/RELEASE_NOTES_v0.5.0.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/RELEASE_NOTES_v0.5.1.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/SESSION_COMPLETE.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/SESSION_COMPLETE.txt +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/SESSION_WRAP_UP.txt +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/TEST_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/TODO.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/sessions-2025-12/SESSION_2025-12-25_TUTORIAL_SYSTEM.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/sessions-2025-12/SESSION_COMPLETE_2025-12-25.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/sessions-2025-12/SESSION_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/sessions-2025-12/TUTORIAL_SYSTEM_COMPLETE.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/FINAL_SESSION_SUMMARY.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/Formula-local-test.rb +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/QUICK_START_TESTING.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/QUICK_TEST_GUIDE.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/TESTING_GUIDE.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/interactive_dogfood.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/archive/testing-utilities/test_local_install.sh +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/config/nexus.example.yaml +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/development/architecture.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/development/contributing.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/specs/SPEC-bibliography-coverage.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/specs/SPEC-cli-coverage.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/specs/SPEC-courses-coverage.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/specs/SPEC-nexus-doctor.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/tutorial-guide.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/docs/tutorials/tutorial-quick-ref.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/install.sh +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/main.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/integrations/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/knowledge/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/knowledge/search.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/research/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/research/pdf.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/research/zotero.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/teaching/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/teaching/quarto.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/utils/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/writing/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/nexus/writing/bibliography.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/output.json +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/.claude-plugin/plugin.json +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/README.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/commands/check.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/commands/cite.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/commands/dashboard.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/commands/manuscripts.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/commands/search.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/skills/integration-patterns/skill.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/skills/knowledge/vault-operations/skill.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/skills/research/zotero-integration/skill.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/skills/teaching/course-management/skill.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/plugin/skills/writing/manuscript-management/skill.md +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/__init__.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/conftest.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_edge_cases.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_manuscript.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_pdf.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_pdf_extractor.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_quarto.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_quarto_manager.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_search.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_validation.py +0 -0
- {nexus_cli-0.5.2 → nexus_cli-0.6.1}/tests/test_zotero.py +0 -0
nexus_cli-0.6.1/.STATUS
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
status: active
|
|
2
|
+
priority: 1
|
|
3
|
+
progress: 100
|
|
4
|
+
next: vault.py coverage 78% → 98.14% ✓ (last v0.6.0 target met, on dev). Ready for v0.6.1 patch release when desired
|
|
5
|
+
type: dev
|
|
6
|
+
checkpoint: 2026-06-03 — v0.6.0 FULLY SHIPPED. PR #6 reviewed+fixed (6 issues)+merged; PR #8 dev→main merged; tagged v0.6.0; PyPI published; docs site deployed; CI green (Windows fixed). Homebrew tap formula pushed (commit ef8bc03) + brew audit clean. All release channels live.
|
|
7
|
+
version: 0.6.0
|
|
8
|
+
release_date: 2026-06-03
|
|
9
|
+
release_url: https://github.com/Data-Wise/nexus-cli/releases/tag/v0.6.0
|
|
10
|
+
docs_url: https://data-wise.github.io/nexus-cli/
|
|
11
|
+
planning_doc: ORCHESTRATE-nexus-enhancement.md
|
|
12
|
+
|
|
13
|
+
worktrees: []
|
|
14
|
+
|
|
15
|
+
# ═══════════════════════════════════════════════════════════════════
|
|
16
|
+
# Nexus CLI - Knowledge Workflow for Research, Teaching, Writing
|
|
17
|
+
# ═══════════════════════════════════════════════════════════════════
|
|
18
|
+
|
|
19
|
+
🔧 Nexus CLI Development Status
|
|
20
|
+
────────────────────────────────────────
|
|
21
|
+
|
|
22
|
+
📍 LOCATION
|
|
23
|
+
~/projects/dev-tools/nexus-cli/
|
|
24
|
+
|
|
25
|
+
⏰ LAST UPDATED
|
|
26
|
+
2026-06-02 — v0.5.2 shipped, full type safety achieved
|
|
27
|
+
|
|
28
|
+
────────────────────────────────────────
|
|
29
|
+
|
|
30
|
+
🎉 RELEASE v0.5.2 - FULL TYPE SAFETY
|
|
31
|
+
|
|
32
|
+
Release highlights:
|
|
33
|
+
- ✅ 0 mypy errors across all 18 source files (fixed 142)
|
|
34
|
+
- ✅ TYPE_CHECKING imports + return type annotations on all _get_* helpers
|
|
35
|
+
- ✅ dict[str, Any] throughout domain modules
|
|
36
|
+
- ✅ PyPI published via OIDC Trusted Publishing (automatic on release)
|
|
37
|
+
- ✅ Homebrew tap auto-updated via CI
|
|
38
|
+
|
|
39
|
+
────────────────────────────────────────
|
|
40
|
+
|
|
41
|
+
🎯 CURRENT STATUS
|
|
42
|
+
|
|
43
|
+
**v0.5.2 SHIPPED** ✅
|
|
44
|
+
|
|
45
|
+
📊 PROJECT METRICS (2026-06-02)
|
|
46
|
+
|
|
47
|
+
Version: 0.5.2
|
|
48
|
+
Tests: 499 passing, 1 skipped (76.81% coverage)
|
|
49
|
+
Mypy: 0 errors across 18 source files ✅
|
|
50
|
+
Commands: 50+ across 4 domains
|
|
51
|
+
Tutorial Steps: 30 (7 + 11 + 12)
|
|
52
|
+
Module Coverage highlights:
|
|
53
|
+
- Zotero: 96.89% 🚀
|
|
54
|
+
- Tutorial: 94.2% 🎓
|
|
55
|
+
- Quarto: 91.36%
|
|
56
|
+
Documentation: 9,500+ lines (MkDocs)
|
|
57
|
+
Python: 3.11+ required
|
|
58
|
+
|
|
59
|
+
────────────────────────────────────────
|
|
60
|
+
|
|
61
|
+
🎯 NEXT: v0.6.0 Coverage Push (per ORCHESTRATE plan)
|
|
62
|
+
|
|
63
|
+
Coverage targets:
|
|
64
|
+
- [ ] Knowledge (vault.py): 78% → 95%
|
|
65
|
+
- [ ] Teaching (courses.py): 70% → 90%
|
|
66
|
+
- [ ] Writing (bibliography.py): 74% → 90%
|
|
67
|
+
- [ ] CLI (cli.py): improve overall
|
|
68
|
+
|
|
69
|
+
Start with feature/courses-coverage worktree per ORCHESTRATE-nexus-enhancement.md
|
|
70
|
+
|
|
71
|
+
────────────────────────────────────────
|
|
72
|
+
|
|
73
|
+
🔗 RELATED PROJECTS
|
|
74
|
+
|
|
75
|
+
| Project | Status | Purpose |
|
|
76
|
+
|---------|--------|---------|
|
|
77
|
+
| Nexus CLI | ✅ v0.5.2 | This project |
|
|
78
|
+
| Nexus MCP Server | ✅ Active | 17 tools for Claude integration |
|
|
79
|
+
| homebrew-tap | ✅ Auto-updated | brew install nexus-cli |
|
|
80
|
+
|
|
81
|
+
────────────────────────────────────────
|
|
82
|
+
|
|
83
|
+
📁 KEY FILES
|
|
84
|
+
|
|
85
|
+
Core:
|
|
86
|
+
- nexus/cli.py - Main CLI (TYPE_CHECKING imports added)
|
|
87
|
+
- nexus/utils/tutorial.py - Tutorial engine (94.2% coverage)
|
|
88
|
+
- nexus/research/zotero.py - Zotero integration (96.89% coverage)
|
|
89
|
+
- pyproject.toml - Project metadata (v0.5.2)
|
|
90
|
+
|
|
91
|
+
CI/CD:
|
|
92
|
+
- .github/workflows/publish.yml - PyPI auto-publish on release (OIDC)
|
|
93
|
+
- .github/workflows/homebrew-release.yml - Homebrew tap auto-update
|
|
94
|
+
|
|
95
|
+
Planning:
|
|
96
|
+
- ORCHESTRATE-nexus-enhancement.md - v0.6.0 implementation plan
|
|
97
|
+
- PLANNING.md - Development roadmap
|
|
98
|
+
|
|
99
|
+
────────────────────────────────────────
|
|
100
|
+
|
|
101
|
+
✅ v0.5.2 RELEASED - 2026-06-02
|
|
102
|
+
📊 499 tests, 76.81% coverage, 0 mypy errors, full release pipeline automated
|
|
@@ -59,4 +59,10 @@ jobs:
|
|
|
59
59
|
source_type: pypi
|
|
60
60
|
auto_merge: ${{ github.event.inputs.auto_merge == 'true' || github.event_name == 'workflow_dispatch' }}
|
|
61
61
|
secrets:
|
|
62
|
+
# Prefer GitHub App auth (short-lived, scoped, no expiry to rotate).
|
|
63
|
+
# The reusable workflow mints an App token and only falls back to
|
|
64
|
+
# tap_token (an expiring PAT) when the App secrets are absent.
|
|
65
|
+
# Matches craft's pattern — see homebrew-tap update-formula.yml.
|
|
66
|
+
app_id: ${{ secrets.APP_ID }}
|
|
67
|
+
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
|
|
62
68
|
tap_token: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
|
|
@@ -2,9 +2,9 @@ name: Tests
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
branches: [ main, develop ]
|
|
5
|
+
branches: [ main, dev, develop ]
|
|
6
6
|
pull_request:
|
|
7
|
-
branches: [ main ]
|
|
7
|
+
branches: [ main, dev ]
|
|
8
8
|
schedule:
|
|
9
9
|
# Run tests every Monday at 9 AM UTC
|
|
10
10
|
- cron: '0 9 * * 1'
|
|
@@ -93,6 +93,9 @@ jobs:
|
|
|
93
93
|
|
|
94
94
|
- name: Create coverage badge
|
|
95
95
|
uses: schneegans/dynamic-badges-action@v1.7.0
|
|
96
|
+
# Non-blocking: gistID is an unconfigured placeholder. Until a real
|
|
97
|
+
# Gist + GIST_SECRET are set up, this step must not fail the workflow.
|
|
98
|
+
continue-on-error: true
|
|
96
99
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
97
100
|
with:
|
|
98
101
|
auth: ${{ secrets.GIST_SECRET }}
|
|
@@ -13,13 +13,13 @@ Nexus is a **knowledge workflow CLI** for academic researchers. It provides data
|
|
|
13
13
|
- Teaching materials
|
|
14
14
|
- Manuscripts
|
|
15
15
|
|
|
16
|
-
**Current Version**: 0.
|
|
16
|
+
**Current Version**: 0.6.1
|
|
17
17
|
|
|
18
18
|
## Quick Start for Claude
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
21
|
# Check installation
|
|
22
|
-
nexus --version # Should show 0.
|
|
22
|
+
nexus --version # Should show 0.6.1
|
|
23
23
|
nexus doctor # Health check
|
|
24
24
|
|
|
25
25
|
# Interactive learning system
|
|
@@ -45,9 +45,12 @@ nexus-cli/
|
|
|
45
45
|
│ ├── writing/ # ✍️ Manuscripts, LaTeX, bibliography
|
|
46
46
|
│ ├── knowledge/ # 🧠 Vault, search, graph
|
|
47
47
|
│ ├── integrations/ # 🔌 aiterm, R, Git
|
|
48
|
+
│ ├── data/ # Bundled package data
|
|
49
|
+
│ │ └── vault-spec.yaml # Default PARA vault structure spec
|
|
48
50
|
│ └── utils/ # Config, tutorial, output
|
|
49
51
|
│ ├── config.py # Configuration management
|
|
50
|
-
│
|
|
52
|
+
│ ├── tutorial.py # Interactive tutorial system (NEW v0.5.0)
|
|
53
|
+
│ └── vault_spec.py # Vault structure validation (PARA spec)
|
|
51
54
|
│
|
|
52
55
|
├── plugin/ # Claude Code plugin
|
|
53
56
|
│ ├── skills/ # Domain skills
|
|
@@ -60,7 +63,7 @@ nexus-cli/
|
|
|
60
63
|
│ ├── reference/ # CLI, API, MCP reference
|
|
61
64
|
│ └── development/ # Contributing, testing
|
|
62
65
|
│
|
|
63
|
-
├── tests/ # pytest tests (
|
|
66
|
+
├── tests/ # pytest tests (499 tests, 76.81% coverage)
|
|
64
67
|
├── config/ # Default configs
|
|
65
68
|
├── pyproject.toml # Project metadata
|
|
66
69
|
└── README.md
|
|
@@ -179,8 +182,8 @@ nexus knowledge search "mediation" --source zotero,vault
|
|
|
179
182
|
## Development Commands
|
|
180
183
|
|
|
181
184
|
```bash
|
|
182
|
-
# Install dependencies
|
|
183
|
-
uv sync
|
|
185
|
+
# Install dependencies (--all-extras required for dev tools)
|
|
186
|
+
uv sync --all-extras
|
|
184
187
|
|
|
185
188
|
# Run CLI locally
|
|
186
189
|
uv run nexus --help
|
|
@@ -192,8 +195,8 @@ uv tool install .
|
|
|
192
195
|
uv tool install --reinstall . # For updates
|
|
193
196
|
|
|
194
197
|
# Run tests
|
|
195
|
-
uv run pytest # All tests (
|
|
196
|
-
uv run pytest --cov=nexus # With coverage (
|
|
198
|
+
uv run pytest # All tests (499 tests)
|
|
199
|
+
uv run pytest --cov=nexus # With coverage (76.81%)
|
|
197
200
|
uv run pytest tests/research/ # Specific domain
|
|
198
201
|
|
|
199
202
|
# Type check
|
|
@@ -233,7 +236,10 @@ writing:
|
|
|
233
236
|
manuscripts_dir: ~/projects/research
|
|
234
237
|
```
|
|
235
238
|
|
|
236
|
-
**Environment
|
|
239
|
+
**Environment Overrides**:
|
|
240
|
+
- `NEXUS_CONFIG=/path/to/config.yaml` — use an alternate config file
|
|
241
|
+
- `NEXUS_VAULT_SPEC=/path/to/vault-spec.yaml` — validate vault structure
|
|
242
|
+
against a custom PARA spec (falls back to bundled `nexus/data/vault-spec.yaml`)
|
|
237
243
|
|
|
238
244
|
## Adding New Commands
|
|
239
245
|
|
|
@@ -366,10 +372,10 @@ nexus learn getting-started # Start learning
|
|
|
366
372
|
## Testing
|
|
367
373
|
|
|
368
374
|
```bash
|
|
369
|
-
# Run all tests (
|
|
375
|
+
# Run all tests (499 tests)
|
|
370
376
|
uv run pytest
|
|
371
377
|
|
|
372
|
-
# Run with coverage (current:
|
|
378
|
+
# Run with coverage (current: 76.81%)
|
|
373
379
|
uv run pytest --cov=nexus
|
|
374
380
|
|
|
375
381
|
# Run specific test file
|
|
@@ -441,7 +447,7 @@ echo $PATH | grep ".local/bin"
|
|
|
441
447
|
|
|
442
448
|
## Project Status
|
|
443
449
|
|
|
444
|
-
### Completed Features (v0.5.
|
|
450
|
+
### Completed Features (v0.5.2)
|
|
445
451
|
✅ Core CLI infrastructure (Typer, Rich)
|
|
446
452
|
✅ Research domain (Zotero, PDFs)
|
|
447
453
|
✅ Knowledge domain (Vault, search, graph)
|
|
@@ -452,12 +458,14 @@ echo $PATH | grep ".local/bin"
|
|
|
452
458
|
✅ Batch manuscript operations
|
|
453
459
|
✅ MCP server integration (17 tools)
|
|
454
460
|
✅ Comprehensive documentation (MkDocs)
|
|
455
|
-
✅ Testing infrastructure (
|
|
461
|
+
✅ Testing infrastructure (499 tests, 76.81% coverage)
|
|
456
462
|
✅ CI/CD (GitHub Actions, multi-platform)
|
|
463
|
+
✅ Full type safety (0 mypy errors across 18 source files)
|
|
457
464
|
|
|
458
465
|
### Key Metrics
|
|
459
|
-
- **Version**: 0.
|
|
460
|
-
- **Tests**:
|
|
466
|
+
- **Version**: 0.6.1
|
|
467
|
+
- **Tests**: 719 passing, 1 skipped (87.5% coverage)
|
|
468
|
+
- **Mypy**: 0 errors across 20 source files
|
|
461
469
|
- **Commands**: 50+ across 4 domains
|
|
462
470
|
- **Documentation**: 9,500+ lines (MkDocs)
|
|
463
471
|
- **Tutorial Steps**: 30 (interactive learning)
|
|
@@ -467,7 +475,7 @@ echo $PATH | grep ".local/bin"
|
|
|
467
475
|
- **Main CLI**: `nexus/cli.py` (1,900+ lines)
|
|
468
476
|
- **Tutorial System**: `nexus/utils/tutorial.py` (500+ lines)
|
|
469
477
|
- **Config Management**: `nexus/utils/config.py`
|
|
470
|
-
- **Tests**: `tests/` (
|
|
478
|
+
- **Tests**: `tests/` (499 tests)
|
|
471
479
|
- **Docs**: `docs/` (MkDocs site)
|
|
472
480
|
- **Tutorial Docs**:
|
|
473
481
|
- `TUTORIAL_GUIDE.md` (2,000 lines)
|
|
@@ -523,24 +531,32 @@ nexus doctor
|
|
|
523
531
|
5. **Configuration required**: Many features need `~/.config/nexus/config.yaml`
|
|
524
532
|
6. **Package name**: Install as `nexus-cli`, not `nexus` (name collision)
|
|
525
533
|
|
|
526
|
-
## Recent Changes
|
|
534
|
+
## Recent Changes
|
|
527
535
|
|
|
536
|
+
### v0.5.2 (Jun 2, 2026)
|
|
537
|
+
- ✅ Full type safety: 0 mypy errors across 18 source files (fixed 142)
|
|
538
|
+
- ✅ `TYPE_CHECKING` imports + return type annotations on all `_get_*` helpers in `cli.py`
|
|
539
|
+
- ✅ `dict[str, Any]` / `list[dict[str, Any]]` throughout domain modules
|
|
540
|
+
|
|
541
|
+
### v0.5.1 (Dec 31, 2025)
|
|
542
|
+
- ✅ Comprehensive Zotero testing (38 new tests, 96.89% coverage)
|
|
543
|
+
- ✅ Tutorial system testing (39 new tests, 94.2% coverage)
|
|
544
|
+
- ✅ 499 tests passing (76.81% coverage)
|
|
545
|
+
|
|
546
|
+
### v0.5.0
|
|
528
547
|
- ✅ Renamed `tutorial` command to `learn` (simpler)
|
|
529
|
-
- ✅
|
|
530
|
-
- ✅ Added
|
|
531
|
-
- ✅ Added graph export formats
|
|
548
|
+
- ✅ Added interactive tutorial system (3 levels, 30 steps)
|
|
549
|
+
- ✅ Added graph export formats (GraphML, D3.js, JSON)
|
|
532
550
|
- ✅ Added batch manuscript operations
|
|
533
|
-
- ✅ Updated all documentation
|
|
534
551
|
- ✅ MkDocs integration for tutorials
|
|
535
|
-
- ✅ 422 tests passing (75% coverage)
|
|
536
552
|
|
|
537
|
-
## Testing Strategy (Updated
|
|
553
|
+
## Testing Strategy (Updated Jun 2, 2026)
|
|
538
554
|
|
|
539
555
|
### Current Test Coverage
|
|
540
556
|
|
|
541
557
|
**Overall Statistics:**
|
|
542
|
-
- **
|
|
543
|
-
- **
|
|
558
|
+
- **499 tests** passing, 1 skipped (76.81% coverage)
|
|
559
|
+
- **0 mypy errors** across all 18 source files (fixed 142 in v0.5.2)
|
|
544
560
|
- **High-quality modules** (90%+ coverage):
|
|
545
561
|
- Zotero (96.89%) 🚀 - Research domain
|
|
546
562
|
- Tutorial (94.2%) 🎓 - Utils domain
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
# ORCHESTRATE: Nexus Enhancement Plan
|
|
2
|
+
**Created:** 2026-06-02
|
|
3
|
+
**Worktree:** `~/.git-worktrees/nexus-cli/nexus-enhancement`
|
|
4
|
+
**Branch:** `feature/nexus-enhancement` → `dev` → `main`
|
|
5
|
+
**Specs:** `docs/specs/SPEC-*.md`
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Overview
|
|
10
|
+
|
|
11
|
+
Four independent sessions improving nexus-cli quality and establishing
|
|
12
|
+
the shared contract between `nexus/` (architecture) and `nexus-cli/` (tooling).
|
|
13
|
+
|
|
14
|
+
Sessions 1–3 are parallel-safe (no shared files). Session 4 (nexus doctor)
|
|
15
|
+
touches two repos — do it after the others are merged to avoid conflicts.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Session 1: courses.py Coverage
|
|
20
|
+
**Branch:** `feature/courses-coverage` off `dev`
|
|
21
|
+
**Spec:** `docs/specs/SPEC-courses-coverage.md`
|
|
22
|
+
**Worktree:** `~/.git-worktrees/nexus-cli/courses-coverage`
|
|
23
|
+
**Effort:** ~2.5 hours
|
|
24
|
+
**Goal:** `teaching/courses.py` 70% → 90%+, ≥30 tests, 0 mypy errors
|
|
25
|
+
|
|
26
|
+
### Start this session:
|
|
27
|
+
```bash
|
|
28
|
+
cd /Users/dt/projects/dev-tools/nexus-cli
|
|
29
|
+
git worktree add ~/.git-worktrees/nexus-cli/courses-coverage -b feature/courses-coverage dev
|
|
30
|
+
cd ~/.git-worktrees/nexus-cli/courses-coverage
|
|
31
|
+
claude
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Session prompt:
|
|
35
|
+
> Working in nexus-cli. Read CLAUDE.md for conventions.
|
|
36
|
+
> Read docs/specs/SPEC-courses-coverage.md — implement it exactly.
|
|
37
|
+
> Follow the 5-phase blueprint (infrastructure → core tests → edge cases →
|
|
38
|
+
> type safety → verification). Target: courses.py ≥90% coverage, ≥30 tests,
|
|
39
|
+
> 0 mypy errors. Commit on feature/courses-coverage, then stop.
|
|
40
|
+
|
|
41
|
+
### Done when:
|
|
42
|
+
- [ ] `uv run --extra dev pytest tests/test_courses.py --cov=nexus/teaching/courses` shows ≥90%
|
|
43
|
+
- [ ] 0 mypy errors: `uv run mypy nexus/teaching/courses.py`
|
|
44
|
+
- [ ] Full suite: 499+ passed, 0 failed
|
|
45
|
+
- [ ] Committed on `feature/courses-coverage`
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Session 2: bibliography.py Coverage
|
|
50
|
+
**Branch:** `feature/bibliography-coverage` off `dev`
|
|
51
|
+
**Spec:** `docs/specs/SPEC-bibliography-coverage.md`
|
|
52
|
+
**Worktree:** `~/.git-worktrees/nexus-cli/bibliography-coverage`
|
|
53
|
+
**Effort:** ~2.5 hours
|
|
54
|
+
**Goal:** `writing/bibliography.py` 74% → 90%+, ≥30 tests, 0 mypy errors
|
|
55
|
+
|
|
56
|
+
### Start this session:
|
|
57
|
+
```bash
|
|
58
|
+
cd /Users/dt/projects/dev-tools/nexus-cli
|
|
59
|
+
git worktree add ~/.git-worktrees/nexus-cli/bibliography-coverage -b feature/bibliography-coverage dev
|
|
60
|
+
cd ~/.git-worktrees/nexus-cli/bibliography-coverage
|
|
61
|
+
claude
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Session prompt:
|
|
65
|
+
> Working in nexus-cli. Read CLAUDE.md for conventions.
|
|
66
|
+
> Read docs/specs/SPEC-bibliography-coverage.md — implement it exactly.
|
|
67
|
+
> Follow the 5-phase blueprint. Target: bibliography.py ≥90% coverage,
|
|
68
|
+
> ≥30 tests, 0 mypy errors. Commit on feature/bibliography-coverage, then stop.
|
|
69
|
+
|
|
70
|
+
### Done when:
|
|
71
|
+
- [ ] `uv run --extra dev pytest tests/test_bibliography.py --cov=nexus/writing/bibliography` shows ≥90%
|
|
72
|
+
- [ ] 0 mypy errors: `uv run mypy nexus/writing/bibliography.py`
|
|
73
|
+
- [ ] Full suite: 499+ passed, 0 failed
|
|
74
|
+
- [ ] Committed on `feature/bibliography-coverage`
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Session 3: cli.py Coverage
|
|
79
|
+
**Branch:** `feature/cli-coverage` off `dev`
|
|
80
|
+
**Spec:** `docs/specs/SPEC-cli-coverage.md`
|
|
81
|
+
**Worktree:** `~/.git-worktrees/nexus-cli/cli-coverage`
|
|
82
|
+
**Effort:** ~3 hours
|
|
83
|
+
**Goal:** `cli.py` 66% → 80%+, ≥35 new tests
|
|
84
|
+
**Note:** Do Sessions 1 and 2 first — warm-up before the largest file.
|
|
85
|
+
|
|
86
|
+
### Start this session:
|
|
87
|
+
```bash
|
|
88
|
+
cd /Users/dt/projects/dev-tools/nexus-cli
|
|
89
|
+
git worktree add ~/.git-worktrees/nexus-cli/cli-coverage -b feature/cli-coverage dev
|
|
90
|
+
cd ~/.git-worktrees/nexus-cli/cli-coverage
|
|
91
|
+
claude
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Session prompt:
|
|
95
|
+
> Working in nexus-cli. Read CLAUDE.md for conventions.
|
|
96
|
+
> Read docs/specs/SPEC-cli-coverage.md — implement it exactly.
|
|
97
|
+
> Subcommand-by-subcommand approach. Target: cli.py ≥80% coverage,
|
|
98
|
+
> ≥35 new tests. Commit on feature/cli-coverage, then stop.
|
|
99
|
+
|
|
100
|
+
### Done when:
|
|
101
|
+
- [ ] `uv run --extra dev pytest tests/test_cli*.py --cov=nexus/cli` shows ≥80%
|
|
102
|
+
- [ ] Full suite: 499+ passed, 0 failed
|
|
103
|
+
- [ ] Committed on `feature/cli-coverage`
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## Session 4: nexus doctor (Cross-repo)
|
|
108
|
+
**Branch:** `feature/nexus-doctor` off `nexus-cli/dev`
|
|
109
|
+
**Spec:** `docs/specs/SPEC-nexus-doctor.md`
|
|
110
|
+
**Worktree:** `~/.git-worktrees/nexus-cli/nexus-doctor`
|
|
111
|
+
**Also touches:** `nexus/` repo (docs commit to `dev`)
|
|
112
|
+
**Effort:** ~2 hours
|
|
113
|
+
**Prerequisite:** Sessions 1–3 merged to dev (avoid conflicts in cli.py)
|
|
114
|
+
|
|
115
|
+
### Start this session:
|
|
116
|
+
```bash
|
|
117
|
+
cd /Users/dt/projects/dev-tools/nexus-cli
|
|
118
|
+
git worktree add ~/.git-worktrees/nexus-cli/nexus-doctor -b feature/nexus-doctor dev
|
|
119
|
+
cd ~/.git-worktrees/nexus-cli/nexus-doctor
|
|
120
|
+
claude
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### Session prompt:
|
|
124
|
+
> Working in nexus-cli. Read CLAUDE.md for conventions.
|
|
125
|
+
> Read docs/specs/SPEC-nexus-doctor.md — implement it exactly.
|
|
126
|
+
> This spans two repos: (1) add vault-spec.yaml to nexus/ on dev,
|
|
127
|
+
> (2) add nexus/utils/vault_spec.py and extend nexus doctor in nexus-cli.
|
|
128
|
+
> Bundle a default vault-spec.yaml in nexus/data/. Add ≥10 tests.
|
|
129
|
+
> Commit nexus-cli work on feature/nexus-doctor. Commit nexus/ work
|
|
130
|
+
> directly on nexus/dev (docs only). Then stop.
|
|
131
|
+
|
|
132
|
+
### Done when:
|
|
133
|
+
- [ ] `nexus/vault-spec.yaml` committed to `nexus/dev`
|
|
134
|
+
- [ ] `nexus/utils/vault_spec.py` created with tests
|
|
135
|
+
- [ ] `nexus doctor` shows vault structure section
|
|
136
|
+
- [ ] `nexus doctor --json` includes vault checks
|
|
137
|
+
- [ ] ≥10 tests in `tests/test_vault_spec.py`
|
|
138
|
+
- [ ] Committed on `feature/nexus-doctor`
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## Integration Order
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
Session 1 (courses) ─┐
|
|
146
|
+
Session 2 (biblio) ─┤─→ merge all to dev ─→ Session 4 (doctor)
|
|
147
|
+
Session 3 (cli) ─┘ ↑
|
|
148
|
+
PR each feature/* → dev
|
|
149
|
+
then release PR dev → main (v0.6.0)
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Sessions 1–3 can run in any order or in parallel (separate worktrees,
|
|
153
|
+
no shared files). Session 4 must come after all three are merged to dev.
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## Release: v0.6.0
|
|
158
|
+
|
|
159
|
+
After all four sessions merged to dev:
|
|
160
|
+
```bash
|
|
161
|
+
# From nexus-cli root on dev:
|
|
162
|
+
# bump version 0.5.1 → 0.6.0
|
|
163
|
+
# update CHANGELOG
|
|
164
|
+
# PR dev → main
|
|
165
|
+
# tag v0.6.0
|
|
166
|
+
# update homebrew tap
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
Expected metrics at v0.6.0:
|
|
170
|
+
- Overall coverage: 76% → ~82%+
|
|
171
|
+
- courses.py: 70% → 90%+
|
|
172
|
+
- bibliography.py: 74% → 90%+
|
|
173
|
+
- cli.py: 66% → 80%+
|
|
174
|
+
- nexus doctor: validates vault structure (shared contract live)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nexus-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.1
|
|
4
4
|
Summary: Knowledge workflow CLI for research, teaching, and writing - Claude's body for academic work
|
|
5
5
|
Project-URL: Homepage, https://github.com/Data-Wise/nexus-cli
|
|
6
6
|
Project-URL: Documentation, https://data-wise.github.io/nexus-cli
|
|
@@ -165,7 +165,8 @@ nexus knowledge search "propensity score"
|
|
|
165
165
|
|
|
166
166
|
| Command | Description |
|
|
167
167
|
|---------|-------------|
|
|
168
|
-
| `nexus
|
|
168
|
+
| `nexus help [topic]` | Flow-cli-style quick-start cheatsheet (main, research, teach, write, knowledge) |
|
|
169
|
+
| `nexus doctor` | Check health + validate PARA vault structure (exits 1 if required folders missing) |
|
|
169
170
|
| `nexus config` | View or edit configuration |
|
|
170
171
|
| `nexus learn` | Interactive learning tutorials (getting-started, medium, advanced) |
|
|
171
172
|
| `nexus --version` | Show version |
|
|
@@ -124,7 +124,8 @@ nexus knowledge search "propensity score"
|
|
|
124
124
|
|
|
125
125
|
| Command | Description |
|
|
126
126
|
|---------|-------------|
|
|
127
|
-
| `nexus
|
|
127
|
+
| `nexus help [topic]` | Flow-cli-style quick-start cheatsheet (main, research, teach, write, knowledge) |
|
|
128
|
+
| `nexus doctor` | Check health + validate PARA vault structure (exits 1 if required folders missing) |
|
|
128
129
|
| `nexus config` | View or edit configuration |
|
|
129
130
|
| `nexus learn` | Interactive learning tutorials (getting-started, medium, advanced) |
|
|
130
131
|
| `nexus --version` | Show version |
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Nexus Interactive Tutorial System
|
|
2
2
|
|
|
3
|
+
> **TL;DR** (30 seconds)
|
|
4
|
+
> - **What:** The built-in `nexus learn` tutorial system — 3 levels, 30 steps.
|
|
5
|
+
> - **Why:** Learn the CLI hands-on at your own pace.
|
|
6
|
+
> - **How:** `nexus learn` to browse, `nexus learn getting-started` to begin.
|
|
7
|
+
> - **Next:** [Quick Reference →](tutorial-quick-ref.md)
|
|
8
|
+
|
|
3
9
|
## Overview
|
|
4
10
|
|
|
5
11
|
Nexus includes a built-in interactive tutorial system to help new users learn the CLI at their own pace. Tutorials are organized into three levels:
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Nexus Tutorial Quick Reference
|
|
2
2
|
|
|
3
|
+
> **TL;DR** (30 seconds)
|
|
4
|
+
> - **What:** Cheat sheet for the `nexus learn` tutorial commands.
|
|
5
|
+
> - **Why:** Fast lookup for starting, resuming, and listing tutorials.
|
|
6
|
+
> - **How:** `nexus learn medium --step 5` resumes from step 5.
|
|
7
|
+
> - **Next:** [Full Tutorial Guide →](tutorial-guide.md)
|
|
8
|
+
|
|
3
9
|
## Commands
|
|
4
10
|
|
|
5
11
|
```bash
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# ⚡ ADHD Quick Start
|
|
2
|
+
|
|
3
|
+
> Get Nexus working in **under 2 minutes**. No reading required.
|
|
4
|
+
|
|
5
|
+
## ⏱️ First 30 Seconds
|
|
6
|
+
|
|
7
|
+
The absolute essentials:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
nexus doctor # Check everything is wired up
|
|
11
|
+
nexus --version # Confirm install (should show 0.6.1)
|
|
12
|
+
nexus learn # See what you can learn
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
If `nexus doctor` shows green checks, you're ready.
|
|
16
|
+
|
|
17
|
+
## ⏱️ Next 5 Minutes
|
|
18
|
+
|
|
19
|
+
Once the basics work, pick one:
|
|
20
|
+
|
|
21
|
+
- **🎓 Learn by doing:** `nexus learn getting-started` (7 steps, ~10 min)
|
|
22
|
+
- **🔬 Search papers:** `nexus research zotero search "your topic" --json`
|
|
23
|
+
- **🧠 Search everything:** `nexus knowledge search "your topic" --json`
|
|
24
|
+
- **⚙️ Configure:** [Configuration guide](getting-started/configuration.md)
|
|
25
|
+
|
|
26
|
+
## 🆘 Stuck? Run These
|
|
27
|
+
|
|
28
|
+
Something not working? Try these in order:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
nexus doctor # Diagnose config/data issues
|
|
32
|
+
nexus --help # See all commands
|
|
33
|
+
nexus <domain> --help # e.g. nexus research --help
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Most problems are a missing path in `~/.config/nexus/config.yaml`. Run `nexus doctor` — it tells you exactly what's missing.
|
|
37
|
+
|
|
38
|
+
## 🎯 ADHD-Friendly Features
|
|
39
|
+
|
|
40
|
+
This documentation is built for fast, scannable reading:
|
|
41
|
+
|
|
42
|
+
- ⏱️ **Time estimates** on every tutorial
|
|
43
|
+
- 📦 **TL;DR boxes** at the top of every page (30-second summaries)
|
|
44
|
+
- 📊 **[Visual workflow diagrams](workflows/index.md)** for visual learners
|
|
45
|
+
- ✅ **Quick wins first** — the one command you need, before the deep dive
|
|
46
|
+
- 🚀 **Copy-paste commands** — no reconstruction required
|
|
47
|
+
|
|
48
|
+
## 📚 Where to Go Next
|
|
49
|
+
|
|
50
|
+
| I want to... | Go here |
|
|
51
|
+
|---|---|
|
|
52
|
+
| Install Nexus | [Installation](getting-started/installation.md) |
|
|
53
|
+
| Learn step-by-step | [Interactive Tutorials](tutorials/tutorial-system.md) |
|
|
54
|
+
| See the whole picture | [Visual Workflows](workflows/index.md) |
|
|
55
|
+
| Look up a command | [CLI Reference](reference/cli.md) |
|
|
56
|
+
| Understand the domains | [User Guide](guide/overview.md) |
|
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
## [0.6.1] - 2026-06-03
|
|
2
|
+
|
|
3
|
+
### Changed
|
|
4
|
+
- **Test coverage**: `vault.py` raised from 78% → **98.14%** (+34 tests),
|
|
5
|
+
meeting the last outstanding v0.6.0 coverage target. New tests cover the
|
|
6
|
+
ripgrep search fallback (rg-missing, timeout, malformed JSON), `search_files`,
|
|
7
|
+
template loading/creation, daily notes, invalid-YAML frontmatter handling,
|
|
8
|
+
missing-vault guards, and the tag-graph node/edge paths.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## [0.6.0] - 2026-06-03
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **🩺 `nexus doctor` vault structure validation** — the health check now
|
|
16
|
+
validates your Obsidian vault against the PARA folder spec
|
|
17
|
+
(`00-INBOX`, `10-PROJECTS`, `20-AREAS`, `30-RESOURCES`, `40-ARCHIVE`)
|
|
18
|
+
- New `nexus/utils/vault_spec.py` — spec loader + `check_vault_structure()`
|
|
19
|
+
- Bundled default `nexus/data/vault-spec.yaml` (works without the `nexus/`
|
|
20
|
+
architecture repo installed)
|
|
21
|
+
- `NEXUS_VAULT_SPEC` env var to validate against a custom spec
|
|
22
|
+
- **Exit code**: `nexus doctor` now exits `1` when required PARA folders are
|
|
23
|
+
missing or the spec is invalid (exits `0` otherwise) — making it usable as
|
|
24
|
+
a scriptable/CI health gate. Optional-folder gaps are warnings only.
|
|
25
|
+
- First machine-readable contract between `nexus` (architecture) and
|
|
26
|
+
`nexus-cli` (tooling), preventing silent vault-structure drift
|
|
27
|
+
- Robust spec loading: clear errors for missing/empty/malformed YAML
|
|
28
|
+
- New tests for `vault_spec.py` (100% coverage) + CLI-level doctor tests
|
|
29
|
+
- **🧭 `nexus help [topic]`** — flow-cli-style quick-start cheatsheets
|
|
30
|
+
(box header → most-common → quick examples → categorized actions → tips →
|
|
31
|
+
see-also). Topics: `main`, `research`, `teach`, `write`, `knowledge`.
|
|
32
|
+
Complements the exhaustive `--help`.
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
- **Test coverage**: 76.81% → **87.5%** (+~340 tests across courses,
|
|
36
|
+
bibliography, cli, vault_spec, help_text via the v0.6.0 enhancement plan)
|
|
37
|
+
- **CI**: workflows now trigger on the `dev` branch (previously `main`/`develop`
|
|
38
|
+
only, so PRs to `dev` received no CI)
|
|
39
|
+
|
|
40
|
+
### Docs
|
|
41
|
+
- New [Reference Card](reference/refcard.md); `nexus help` + vault validation
|
|
42
|
+
documented across CLI reference, configuration, and tutorials
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
1
46
|
## [0.5.2] - 2026-06-02
|
|
2
47
|
|
|
3
48
|
### Fixed
|