conexus 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.
- conexus-1.0.0/.beads/.gitignore +51 -0
- conexus-1.0.0/.beads/README.md +81 -0
- conexus-1.0.0/.beads/config.yaml +67 -0
- conexus-1.0.0/.beads/hooks/post-checkout +23 -0
- conexus-1.0.0/.beads/hooks/post-merge +24 -0
- conexus-1.0.0/.beads/hooks/pre-commit +24 -0
- conexus-1.0.0/.beads/hooks/pre-push +19 -0
- conexus-1.0.0/.beads/hooks/prepare-commit-msg +24 -0
- conexus-1.0.0/.beads/interactions.jsonl +0 -0
- conexus-1.0.0/.beads/issues.jsonl +191 -0
- conexus-1.0.0/.beads/metadata.json +6 -0
- conexus-1.0.0/.claude-plugin/marketplace.json +15 -0
- conexus-1.0.0/.devcontainer/Dockerfile +64 -0
- conexus-1.0.0/.devcontainer/devcontainer.json +43 -0
- conexus-1.0.0/.dockerignore +15 -0
- conexus-1.0.0/.env.example +15 -0
- conexus-1.0.0/.gitattributes +3 -0
- conexus-1.0.0/.github/workflows/ci.yml +38 -0
- conexus-1.0.0/.github/workflows/release.yml +102 -0
- conexus-1.0.0/.gitignore +21 -0
- conexus-1.0.0/.markdownlint.json +15 -0
- conexus-1.0.0/AGENTS.md +40 -0
- conexus-1.0.0/CHANGELOG.md +350 -0
- conexus-1.0.0/CLAUDE.md +58 -0
- conexus-1.0.0/Formula/nx.rb +23 -0
- conexus-1.0.0/LICENSE +661 -0
- conexus-1.0.0/PKG-INFO +169 -0
- conexus-1.0.0/README.md +132 -0
- conexus-1.0.0/docs/README.md +34 -0
- conexus-1.0.0/docs/architecture.md +66 -0
- conexus-1.0.0/docs/cli-reference.md +302 -0
- conexus-1.0.0/docs/configuration.md +65 -0
- conexus-1.0.0/docs/contributing.md +168 -0
- conexus-1.0.0/docs/getting-started.md +185 -0
- conexus-1.0.0/docs/historical/README.md +17 -0
- conexus-1.0.0/docs/historical/architecture.md +448 -0
- conexus-1.0.0/docs/historical/plans/2026-02-23-rdr-workflow-skills-design.md +497 -0
- conexus-1.0.0/docs/historical/plans/2026-02-23-rdr-workflow-skills-impl-plan.md +1217 -0
- conexus-1.0.0/docs/historical/plans/2026-02-24-nx-plugin-v0.4.0.md +2256 -0
- conexus-1.0.0/docs/historical/plans/2026-02-24-smart-repo-indexing-design.md +223 -0
- conexus-1.0.0/docs/historical/plans/2026-02-24-smart-repo-indexing-impl-plan.md +1718 -0
- conexus-1.0.0/docs/historical/spec.md +936 -0
- conexus-1.0.0/docs/plans/2026-02-25-rc1-readiness-design.md +86 -0
- conexus-1.0.0/docs/plans/2026-02-25-rc1-readiness.md +931 -0
- conexus-1.0.0/docs/plans/2026-02-28-rdr-004-four-store-cloud-design.md +161 -0
- conexus-1.0.0/docs/plans/2026-02-28-rdr-004-four-store-cloud-impl-plan.md +511 -0
- conexus-1.0.0/docs/plans/2026-03-01-rc10-1.0.0-readiness-design.md +49 -0
- conexus-1.0.0/docs/plans/2026-03-01-rc10-critique-findings.md +274 -0
- conexus-1.0.0/docs/project-management.md +169 -0
- conexus-1.0.0/docs/rdr/README.md +22 -0
- conexus-1.0.0/docs/rdr/post-mortem/010-t1-http-server.md +154 -0
- conexus-1.0.0/docs/rdr/post-mortem/cce-query-model-mismatch.md +167 -0
- conexus-1.0.0/docs/rdr/rdr-001-rdr-process-validation.md +276 -0
- conexus-1.0.0/docs/rdr/rdr-002-t2-status-synchronization.md +532 -0
- conexus-1.0.0/docs/rdr/rdr-004-four-store-architecture.md +166 -0
- conexus-1.0.0/docs/rdr/rdr-005-chromadb-cloud-quota-enforcement.md +516 -0
- conexus-1.0.0/docs/rdr/rdr-006-chunk-size-configuration.md +556 -0
- conexus-1.0.0/docs/rdr/rdr-007-claude-adoption-session-context-and-search-guidance.md +807 -0
- conexus-1.0.0/docs/rdr/rdr-008-nx-workflow-integration.md +684 -0
- conexus-1.0.0/docs/rdr/rdr-009-remove-agentic-and-answer-flags.md +198 -0
- conexus-1.0.0/docs/rdr/rdr-010-t1-scratch-persistent-bounded-store.md +415 -0
- conexus-1.0.0/docs/rdr-nexus-integration.md +129 -0
- conexus-1.0.0/docs/rdr-overview.md +118 -0
- conexus-1.0.0/docs/rdr-templates.md +120 -0
- conexus-1.0.0/docs/rdr-workflow.md +217 -0
- conexus-1.0.0/docs/repo-indexing.md +193 -0
- conexus-1.0.0/docs/storage-tiers.md +99 -0
- conexus-1.0.0/nx/.mcp.json +6 -0
- conexus-1.0.0/nx/CHANGELOG.md +79 -0
- conexus-1.0.0/nx/README.md +251 -0
- conexus-1.0.0/nx/agents/_shared/CONTEXT_PROTOCOL.md +264 -0
- conexus-1.0.0/nx/agents/_shared/ERROR_HANDLING.md +131 -0
- conexus-1.0.0/nx/agents/_shared/MAINTENANCE.md +108 -0
- conexus-1.0.0/nx/agents/_shared/README.md +33 -0
- conexus-1.0.0/nx/agents/_shared/RELAY_TEMPLATE.md +184 -0
- conexus-1.0.0/nx/agents/code-review-expert.md +215 -0
- conexus-1.0.0/nx/agents/codebase-deep-analyzer.md +208 -0
- conexus-1.0.0/nx/agents/deep-analyst.md +256 -0
- conexus-1.0.0/nx/agents/deep-research-synthesizer.md +264 -0
- conexus-1.0.0/nx/agents/java-architect-planner.md +212 -0
- conexus-1.0.0/nx/agents/java-debugger.md +185 -0
- conexus-1.0.0/nx/agents/java-developer.md +244 -0
- conexus-1.0.0/nx/agents/knowledge-tidier.md +323 -0
- conexus-1.0.0/nx/agents/orchestrator.md +256 -0
- conexus-1.0.0/nx/agents/pdf-chromadb-processor.md +233 -0
- conexus-1.0.0/nx/agents/plan-auditor.md +297 -0
- conexus-1.0.0/nx/agents/project-management-setup.md +229 -0
- conexus-1.0.0/nx/agents/strategic-planner.md +333 -0
- conexus-1.0.0/nx/agents/substantive-critic.md +250 -0
- conexus-1.0.0/nx/agents/test-validator.md +263 -0
- conexus-1.0.0/nx/commands/analyze-code.md +102 -0
- conexus-1.0.0/nx/commands/create-plan.md +96 -0
- conexus-1.0.0/nx/commands/deep-analysis.md +92 -0
- conexus-1.0.0/nx/commands/java-architecture.md +115 -0
- conexus-1.0.0/nx/commands/java-debug.md +110 -0
- conexus-1.0.0/nx/commands/java-implement.md +108 -0
- conexus-1.0.0/nx/commands/knowledge-tidy.md +94 -0
- conexus-1.0.0/nx/commands/nx-preflight.md +87 -0
- conexus-1.0.0/nx/commands/orchestrate.md +92 -0
- conexus-1.0.0/nx/commands/pdf-process.md +67 -0
- conexus-1.0.0/nx/commands/plan-audit.md +80 -0
- conexus-1.0.0/nx/commands/pm-archive.md +52 -0
- conexus-1.0.0/nx/commands/pm-close.md +54 -0
- conexus-1.0.0/nx/commands/pm-list.md +50 -0
- conexus-1.0.0/nx/commands/pm-new.md +93 -0
- conexus-1.0.0/nx/commands/pm-restore.md +64 -0
- conexus-1.0.0/nx/commands/pm-status.md +35 -0
- conexus-1.0.0/nx/commands/project-setup.md +82 -0
- conexus-1.0.0/nx/commands/rdr-accept.md +234 -0
- conexus-1.0.0/nx/commands/rdr-close.md +219 -0
- conexus-1.0.0/nx/commands/rdr-create.md +209 -0
- conexus-1.0.0/nx/commands/rdr-gate.md +230 -0
- conexus-1.0.0/nx/commands/rdr-list.md +166 -0
- conexus-1.0.0/nx/commands/rdr-research.md +200 -0
- conexus-1.0.0/nx/commands/rdr-show.md +258 -0
- conexus-1.0.0/nx/commands/research.md +84 -0
- conexus-1.0.0/nx/commands/review-code.md +102 -0
- conexus-1.0.0/nx/commands/substantive-critique.md +98 -0
- conexus-1.0.0/nx/commands/test-validate.md +111 -0
- conexus-1.0.0/nx/hooks/hooks.json +110 -0
- conexus-1.0.0/nx/hooks/scripts/bead_context_hook.py +36 -0
- conexus-1.0.0/nx/hooks/scripts/mcp_health_hook.sh +31 -0
- conexus-1.0.0/nx/hooks/scripts/permission-request-stdin.sh +71 -0
- conexus-1.0.0/nx/hooks/scripts/rdr_hook.py +250 -0
- conexus-1.0.0/nx/hooks/scripts/session_start_hook.py +130 -0
- conexus-1.0.0/nx/hooks/scripts/setup.sh +35 -0
- conexus-1.0.0/nx/hooks/scripts/subagent-start.sh +63 -0
- conexus-1.0.0/nx/hooks/scripts/t2_prefix_scan.py +105 -0
- conexus-1.0.0/nx/registry.yaml +593 -0
- conexus-1.0.0/nx/resources/rdr/README-TEMPLATE.md +10 -0
- conexus-1.0.0/nx/resources/rdr/TEMPLATE.md +305 -0
- conexus-1.0.0/nx/resources/rdr/post-mortem/TEMPLATE.md +152 -0
- conexus-1.0.0/nx/skills/brainstorming-gate/SKILL.md +105 -0
- conexus-1.0.0/nx/skills/cli-controller/SKILL.md +249 -0
- conexus-1.0.0/nx/skills/code-review/SKILL.md +86 -0
- conexus-1.0.0/nx/skills/codebase-analysis/SKILL.md +69 -0
- conexus-1.0.0/nx/skills/deep-analysis/SKILL.md +72 -0
- conexus-1.0.0/nx/skills/java-architecture/SKILL.md +97 -0
- conexus-1.0.0/nx/skills/java-debugging/SKILL.md +88 -0
- conexus-1.0.0/nx/skills/java-development/SKILL.md +99 -0
- conexus-1.0.0/nx/skills/knowledge-tidying/SKILL.md +88 -0
- conexus-1.0.0/nx/skills/nexus/SKILL.md +53 -0
- conexus-1.0.0/nx/skills/nexus/reference.md +164 -0
- conexus-1.0.0/nx/skills/orchestration/SKILL.md +128 -0
- conexus-1.0.0/nx/skills/pdf-processing/SKILL.md +69 -0
- conexus-1.0.0/nx/skills/plan-validation/SKILL.md +75 -0
- conexus-1.0.0/nx/skills/project-setup/SKILL.md +69 -0
- conexus-1.0.0/nx/skills/rdr-accept/SKILL.md +47 -0
- conexus-1.0.0/nx/skills/rdr-close/SKILL.md +201 -0
- conexus-1.0.0/nx/skills/rdr-create/SKILL.md +147 -0
- conexus-1.0.0/nx/skills/rdr-gate/SKILL.md +199 -0
- conexus-1.0.0/nx/skills/rdr-list/SKILL.md +53 -0
- conexus-1.0.0/nx/skills/rdr-research/SKILL.md +141 -0
- conexus-1.0.0/nx/skills/rdr-show/SKILL.md +72 -0
- conexus-1.0.0/nx/skills/research-synthesis/SKILL.md +73 -0
- conexus-1.0.0/nx/skills/serena-code-nav/SKILL.md +101 -0
- conexus-1.0.0/nx/skills/strategic-planning/SKILL.md +76 -0
- conexus-1.0.0/nx/skills/substantive-critique/SKILL.md +76 -0
- conexus-1.0.0/nx/skills/test-validation/SKILL.md +78 -0
- conexus-1.0.0/nx/skills/using-nx-skills/SKILL.md +153 -0
- conexus-1.0.0/nx/skills/writing-nx-skills/SKILL.md +103 -0
- conexus-1.0.0/pyproject.toml +77 -0
- conexus-1.0.0/src/nexus/__init__.py +1 -0
- conexus-1.0.0/src/nexus/chunker.py +220 -0
- conexus-1.0.0/src/nexus/classifier.py +59 -0
- conexus-1.0.0/src/nexus/cli.py +54 -0
- conexus-1.0.0/src/nexus/commands/__init__.py +0 -0
- conexus-1.0.0/src/nexus/commands/_helpers.py +8 -0
- conexus-1.0.0/src/nexus/commands/collection.py +89 -0
- conexus-1.0.0/src/nexus/commands/config_cmd.py +170 -0
- conexus-1.0.0/src/nexus/commands/doctor.py +183 -0
- conexus-1.0.0/src/nexus/commands/hook.py +34 -0
- conexus-1.0.0/src/nexus/commands/index.py +193 -0
- conexus-1.0.0/src/nexus/commands/memory.py +157 -0
- conexus-1.0.0/src/nexus/commands/migrate.py +250 -0
- conexus-1.0.0/src/nexus/commands/pm.py +247 -0
- conexus-1.0.0/src/nexus/commands/scratch.py +126 -0
- conexus-1.0.0/src/nexus/commands/search_cmd.py +242 -0
- conexus-1.0.0/src/nexus/commands/serve.py +208 -0
- conexus-1.0.0/src/nexus/commands/store.py +143 -0
- conexus-1.0.0/src/nexus/config.py +195 -0
- conexus-1.0.0/src/nexus/corpus.py +103 -0
- conexus-1.0.0/src/nexus/db/__init__.py +34 -0
- conexus-1.0.0/src/nexus/db/chroma_quotas.py +273 -0
- conexus-1.0.0/src/nexus/db/t1.py +264 -0
- conexus-1.0.0/src/nexus/db/t2.py +384 -0
- conexus-1.0.0/src/nexus/db/t3.py +647 -0
- conexus-1.0.0/src/nexus/doc_indexer.py +374 -0
- conexus-1.0.0/src/nexus/errors.py +24 -0
- conexus-1.0.0/src/nexus/formatters.py +78 -0
- conexus-1.0.0/src/nexus/frecency.py +103 -0
- conexus-1.0.0/src/nexus/hooks.py +212 -0
- conexus-1.0.0/src/nexus/indexer.py +846 -0
- conexus-1.0.0/src/nexus/md_chunker.py +341 -0
- conexus-1.0.0/src/nexus/pdf_chunker.py +91 -0
- conexus-1.0.0/src/nexus/pdf_extractor.py +152 -0
- conexus-1.0.0/src/nexus/pm.py +534 -0
- conexus-1.0.0/src/nexus/polling.py +76 -0
- conexus-1.0.0/src/nexus/registry.py +181 -0
- conexus-1.0.0/src/nexus/ripgrep_cache.py +131 -0
- conexus-1.0.0/src/nexus/scoring.py +170 -0
- conexus-1.0.0/src/nexus/search_engine.py +103 -0
- conexus-1.0.0/src/nexus/server.py +124 -0
- conexus-1.0.0/src/nexus/server_main.py +59 -0
- conexus-1.0.0/src/nexus/session.py +323 -0
- conexus-1.0.0/src/nexus/ttl.py +43 -0
- conexus-1.0.0/src/nexus/types.py +19 -0
- conexus-1.0.0/tests/__init__.py +0 -0
- conexus-1.0.0/tests/conftest.py +75 -0
- conexus-1.0.0/tests/e2e/auth-login.sh +101 -0
- conexus-1.0.0/tests/e2e/lib.sh +231 -0
- conexus-1.0.0/tests/e2e/run.sh +228 -0
- conexus-1.0.0/tests/e2e/sandbox.sh +42 -0
- conexus-1.0.0/tests/e2e/scenarios/00_debug_load.sh +252 -0
- conexus-1.0.0/tests/e2e/scenarios/01_smoke.sh +54 -0
- conexus-1.0.0/tests/e2e/scenarios/02_sequential_thinking.sh +94 -0
- conexus-1.0.0/tests/e2e/scenarios/03_skills.sh +74 -0
- conexus-1.0.0/tests/test_chroma_quotas.py +325 -0
- conexus-1.0.0/tests/test_chunker.py +295 -0
- conexus-1.0.0/tests/test_classifier.py +77 -0
- conexus-1.0.0/tests/test_collection_cmd.py +296 -0
- conexus-1.0.0/tests/test_config.py +208 -0
- conexus-1.0.0/tests/test_config_cmd.py +214 -0
- conexus-1.0.0/tests/test_corpus.py +252 -0
- conexus-1.0.0/tests/test_doc_indexer.py +1367 -0
- conexus-1.0.0/tests/test_doctor_cmd.py +268 -0
- conexus-1.0.0/tests/test_e2e.py +341 -0
- conexus-1.0.0/tests/test_formatters.py +126 -0
- conexus-1.0.0/tests/test_frecency.py +187 -0
- conexus-1.0.0/tests/test_head_polling.py +155 -0
- conexus-1.0.0/tests/test_hooks.py +304 -0
- conexus-1.0.0/tests/test_index_cmd.py +336 -0
- conexus-1.0.0/tests/test_index_rdr_cmd.py +106 -0
- conexus-1.0.0/tests/test_indexer.py +1106 -0
- conexus-1.0.0/tests/test_indexer_e2e.py +785 -0
- conexus-1.0.0/tests/test_integration.py +573 -0
- conexus-1.0.0/tests/test_md_chunker.py +211 -0
- conexus-1.0.0/tests/test_memory.py +398 -0
- conexus-1.0.0/tests/test_migrate_cmd.py +364 -0
- conexus-1.0.0/tests/test_p0_regressions.py +312 -0
- conexus-1.0.0/tests/test_pdf_chunker.py +57 -0
- conexus-1.0.0/tests/test_pdf_extractor.py +136 -0
- conexus-1.0.0/tests/test_plugin.py +256 -0
- conexus-1.0.0/tests/test_plugin_install.py +232 -0
- conexus-1.0.0/tests/test_plugin_structure.py +906 -0
- conexus-1.0.0/tests/test_pm.py +881 -0
- conexus-1.0.0/tests/test_pm_cmd.py +500 -0
- conexus-1.0.0/tests/test_ppid_chain_hypothesis.py +292 -0
- conexus-1.0.0/tests/test_registry.py +389 -0
- conexus-1.0.0/tests/test_ripgrep_cache.py +260 -0
- conexus-1.0.0/tests/test_schema.py +28 -0
- conexus-1.0.0/tests/test_scoring.py +158 -0
- conexus-1.0.0/tests/test_scratch.py +377 -0
- conexus-1.0.0/tests/test_scratch_cmd.py +160 -0
- conexus-1.0.0/tests/test_search_cmd.py +609 -0
- conexus-1.0.0/tests/test_search_engine.py +279 -0
- conexus-1.0.0/tests/test_search_modules.py +235 -0
- conexus-1.0.0/tests/test_serve_cmd.py +557 -0
- conexus-1.0.0/tests/test_server.py +130 -0
- conexus-1.0.0/tests/test_server_api.py +164 -0
- conexus-1.0.0/tests/test_session.py +199 -0
- conexus-1.0.0/tests/test_session_propagation_hypotheses.py +365 -0
- conexus-1.0.0/tests/test_store_cmd.py +605 -0
- conexus-1.0.0/tests/test_t1.py +347 -0
- conexus-1.0.0/tests/test_t2.py +519 -0
- conexus-1.0.0/tests/test_t2_prefix_scan.py +175 -0
- conexus-1.0.0/tests/test_t3.py +1314 -0
- conexus-1.0.0/tests/test_t3_quota_enforcement.py +386 -0
- conexus-1.0.0/tests/test_ttl.py +71 -0
- conexus-1.0.0/tests/test_types_and_errors.py +63 -0
- conexus-1.0.0/uv.lock +3831 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# SQLite databases
|
|
2
|
+
*.db
|
|
3
|
+
*.db?*
|
|
4
|
+
*.db-journal
|
|
5
|
+
*.db-wal
|
|
6
|
+
*.db-shm
|
|
7
|
+
|
|
8
|
+
# Daemon runtime files
|
|
9
|
+
daemon.lock
|
|
10
|
+
daemon.log
|
|
11
|
+
daemon-*.log.gz
|
|
12
|
+
daemon.pid
|
|
13
|
+
bd.sock
|
|
14
|
+
sync-state.json
|
|
15
|
+
last-touched
|
|
16
|
+
|
|
17
|
+
# Local version tracking (prevents upgrade notification spam after git ops)
|
|
18
|
+
.local_version
|
|
19
|
+
|
|
20
|
+
# Legacy database files
|
|
21
|
+
db.sqlite
|
|
22
|
+
bd.db
|
|
23
|
+
|
|
24
|
+
# Worktree redirect file (contains relative path to main repo's .beads/)
|
|
25
|
+
# Must not be committed as paths would be wrong in other clones
|
|
26
|
+
redirect
|
|
27
|
+
|
|
28
|
+
# Merge artifacts (temporary files from 3-way merge)
|
|
29
|
+
beads.base.jsonl
|
|
30
|
+
beads.base.meta.json
|
|
31
|
+
beads.left.jsonl
|
|
32
|
+
beads.left.meta.json
|
|
33
|
+
beads.right.jsonl
|
|
34
|
+
beads.right.meta.json
|
|
35
|
+
|
|
36
|
+
# Sync state (local-only, per-machine)
|
|
37
|
+
# These files are machine-specific and should not be shared across clones
|
|
38
|
+
.sync.lock
|
|
39
|
+
.jsonl.lock
|
|
40
|
+
sync_base.jsonl
|
|
41
|
+
export-state/
|
|
42
|
+
|
|
43
|
+
# Dolt database (managed by Dolt remotes, not git)
|
|
44
|
+
dolt/
|
|
45
|
+
dolt-access.lock
|
|
46
|
+
|
|
47
|
+
# NOTE: Do NOT add negation patterns (e.g., !issues.jsonl) here.
|
|
48
|
+
# They would override fork protection in .git/info/exclude, allowing
|
|
49
|
+
# contributors to accidentally commit upstream issue databases.
|
|
50
|
+
# The JSONL files (issues.jsonl, interactions.jsonl) and config files
|
|
51
|
+
# are tracked by git by default since no pattern above ignores them.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Beads - AI-Native Issue Tracking
|
|
2
|
+
|
|
3
|
+
Welcome to Beads! This repository uses **Beads** for issue tracking - a modern, AI-native tool designed to live directly in your codebase alongside your code.
|
|
4
|
+
|
|
5
|
+
## What is Beads?
|
|
6
|
+
|
|
7
|
+
Beads is issue tracking that lives in your repo, making it perfect for AI coding agents and developers who want their issues close to their code. No web UI required - everything works through the CLI and integrates seamlessly with git.
|
|
8
|
+
|
|
9
|
+
**Learn more:** [github.com/steveyegge/beads](https://github.com/steveyegge/beads)
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
### Essential Commands
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Create new issues
|
|
17
|
+
bd create "Add user authentication"
|
|
18
|
+
|
|
19
|
+
# View all issues
|
|
20
|
+
bd list
|
|
21
|
+
|
|
22
|
+
# View issue details
|
|
23
|
+
bd show <issue-id>
|
|
24
|
+
|
|
25
|
+
# Update issue status
|
|
26
|
+
bd update <issue-id> --status in_progress
|
|
27
|
+
bd update <issue-id> --status done
|
|
28
|
+
|
|
29
|
+
# Sync with git remote
|
|
30
|
+
bd sync
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Working with Issues
|
|
34
|
+
|
|
35
|
+
Issues in Beads are:
|
|
36
|
+
- **Git-native**: Stored in `.beads/issues.jsonl` and synced like code
|
|
37
|
+
- **AI-friendly**: CLI-first design works perfectly with AI coding agents
|
|
38
|
+
- **Branch-aware**: Issues can follow your branch workflow
|
|
39
|
+
- **Always in sync**: Auto-syncs with your commits
|
|
40
|
+
|
|
41
|
+
## Why Beads?
|
|
42
|
+
|
|
43
|
+
✨ **AI-Native Design**
|
|
44
|
+
- Built specifically for AI-assisted development workflows
|
|
45
|
+
- CLI-first interface works seamlessly with AI coding agents
|
|
46
|
+
- No context switching to web UIs
|
|
47
|
+
|
|
48
|
+
🚀 **Developer Focused**
|
|
49
|
+
- Issues live in your repo, right next to your code
|
|
50
|
+
- Works offline, syncs when you push
|
|
51
|
+
- Fast, lightweight, and stays out of your way
|
|
52
|
+
|
|
53
|
+
🔧 **Git Integration**
|
|
54
|
+
- Automatic sync with git commits
|
|
55
|
+
- Branch-aware issue tracking
|
|
56
|
+
- Intelligent JSONL merge resolution
|
|
57
|
+
|
|
58
|
+
## Get Started with Beads
|
|
59
|
+
|
|
60
|
+
Try Beads in your own projects:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
# Install Beads
|
|
64
|
+
curl -sSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash
|
|
65
|
+
|
|
66
|
+
# Initialize in your repo
|
|
67
|
+
bd init
|
|
68
|
+
|
|
69
|
+
# Create your first issue
|
|
70
|
+
bd create "Try out Beads"
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Learn More
|
|
74
|
+
|
|
75
|
+
- **Documentation**: [github.com/steveyegge/beads/docs](https://github.com/steveyegge/beads/tree/main/docs)
|
|
76
|
+
- **Quick Start Guide**: Run `bd quickstart`
|
|
77
|
+
- **Examples**: [github.com/steveyegge/beads/examples](https://github.com/steveyegge/beads/tree/main/examples)
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
*Beads: Issue tracking that moves at the speed of thought* ⚡
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Beads Configuration File
|
|
2
|
+
# This file configures default behavior for all bd commands in this repository
|
|
3
|
+
# All settings can also be set via environment variables (BD_* prefix)
|
|
4
|
+
# or overridden with command-line flags
|
|
5
|
+
|
|
6
|
+
# Issue prefix for this repository (used by bd init)
|
|
7
|
+
# If not set, bd init will auto-detect from directory name
|
|
8
|
+
# Example: issue-prefix: "myproject" creates issues like "myproject-1", "myproject-2", etc.
|
|
9
|
+
# issue-prefix: ""
|
|
10
|
+
|
|
11
|
+
# Use no-db mode: load from JSONL, no SQLite, write back after each command
|
|
12
|
+
# When true, bd will use .beads/issues.jsonl as the source of truth
|
|
13
|
+
# instead of SQLite database
|
|
14
|
+
# no-db: false
|
|
15
|
+
|
|
16
|
+
# Disable daemon for RPC communication (forces direct database access)
|
|
17
|
+
# no-daemon: false
|
|
18
|
+
|
|
19
|
+
# Disable auto-flush of database to JSONL after mutations
|
|
20
|
+
# no-auto-flush: false
|
|
21
|
+
|
|
22
|
+
# Disable auto-import from JSONL when it's newer than database
|
|
23
|
+
# no-auto-import: false
|
|
24
|
+
|
|
25
|
+
# Enable JSON output by default
|
|
26
|
+
# json: false
|
|
27
|
+
|
|
28
|
+
# Default actor for audit trails (overridden by BD_ACTOR or --actor)
|
|
29
|
+
# actor: ""
|
|
30
|
+
|
|
31
|
+
# Path to database (overridden by BEADS_DB or --db)
|
|
32
|
+
# db: ""
|
|
33
|
+
|
|
34
|
+
# Auto-start daemon if not running (can also use BEADS_AUTO_START_DAEMON)
|
|
35
|
+
# auto-start-daemon: true
|
|
36
|
+
|
|
37
|
+
# Debounce interval for auto-flush (can also use BEADS_FLUSH_DEBOUNCE)
|
|
38
|
+
# flush-debounce: "5s"
|
|
39
|
+
|
|
40
|
+
# Export events (audit trail) to .beads/events.jsonl on each flush/sync
|
|
41
|
+
# When enabled, new events are appended incrementally using a high-water mark.
|
|
42
|
+
# Use 'bd export --events' to trigger manually regardless of this setting.
|
|
43
|
+
# events-export: false
|
|
44
|
+
|
|
45
|
+
# Git branch for beads commits (bd sync will commit to this branch)
|
|
46
|
+
# IMPORTANT: Set this for team projects so all clones use the same sync branch.
|
|
47
|
+
# This setting persists across clones (unlike database config which is gitignored).
|
|
48
|
+
# Can also use BEADS_SYNC_BRANCH env var for local override.
|
|
49
|
+
# If not set, bd sync will require you to run 'bd config set sync.branch <branch>'.
|
|
50
|
+
# sync-branch: "beads-sync"
|
|
51
|
+
|
|
52
|
+
# Multi-repo configuration (experimental - bd-307)
|
|
53
|
+
# Allows hydrating from multiple repositories and routing writes to the correct JSONL
|
|
54
|
+
# repos:
|
|
55
|
+
# primary: "." # Primary repo (where this database lives)
|
|
56
|
+
# additional: # Additional repos to hydrate from (read-only)
|
|
57
|
+
# - ~/beads-planning # Personal planning repo
|
|
58
|
+
# - ~/work-planning # Work planning repo
|
|
59
|
+
|
|
60
|
+
# Integration settings (access with 'bd config get/set')
|
|
61
|
+
# These are stored in the database, not in this file:
|
|
62
|
+
# - jira.url
|
|
63
|
+
# - jira.project
|
|
64
|
+
# - linear.url
|
|
65
|
+
# - linear.api-key
|
|
66
|
+
# - github.org
|
|
67
|
+
# - github.repo
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# bd-shim v1
|
|
3
|
+
# bd-hooks-version: 0.50.3
|
|
4
|
+
#
|
|
5
|
+
# bd (beads) post-checkout hook - thin shim
|
|
6
|
+
#
|
|
7
|
+
# This shim delegates to 'bd hook post-checkout' which contains
|
|
8
|
+
# the actual hook logic. This pattern ensures hook behavior is always
|
|
9
|
+
# in sync with the installed bd version - no manual updates needed.
|
|
10
|
+
#
|
|
11
|
+
# The 'bd hook' command (singular) supports:
|
|
12
|
+
# - Guard against frequent firing (only imports if JSONL changed)
|
|
13
|
+
# - Per-worktree state tracking
|
|
14
|
+
# - Dolt branch-then-merge pattern
|
|
15
|
+
# - Hook chaining configuration
|
|
16
|
+
|
|
17
|
+
# Check if bd is available
|
|
18
|
+
if ! command -v bd >/dev/null 2>&1; then
|
|
19
|
+
# Silently skip - post-checkout is called frequently
|
|
20
|
+
exit 0
|
|
21
|
+
fi
|
|
22
|
+
|
|
23
|
+
exec bd hook post-checkout "$@"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# bd-shim v1
|
|
3
|
+
# bd-hooks-version: 0.50.3
|
|
4
|
+
#
|
|
5
|
+
# bd (beads) post-merge hook - thin shim
|
|
6
|
+
#
|
|
7
|
+
# This shim delegates to 'bd hook post-merge' which contains
|
|
8
|
+
# the actual hook logic. This pattern ensures hook behavior is always
|
|
9
|
+
# in sync with the installed bd version - no manual updates needed.
|
|
10
|
+
#
|
|
11
|
+
# The 'bd hook' command (singular) supports:
|
|
12
|
+
# - Branch-then-merge pattern for Dolt (cell-level conflict resolution)
|
|
13
|
+
# - Per-worktree state tracking
|
|
14
|
+
# - Hook chaining configuration
|
|
15
|
+
|
|
16
|
+
# Check if bd is available
|
|
17
|
+
if ! command -v bd >/dev/null 2>&1; then
|
|
18
|
+
echo "Warning: bd command not found in PATH, skipping post-merge hook" >&2
|
|
19
|
+
echo " Install bd: brew install beads" >&2
|
|
20
|
+
echo " Or add bd to your PATH" >&2
|
|
21
|
+
exit 0
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
exec bd hook post-merge "$@"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# bd-shim v1
|
|
3
|
+
# bd-hooks-version: 0.50.3
|
|
4
|
+
#
|
|
5
|
+
# bd (beads) pre-commit hook - thin shim
|
|
6
|
+
#
|
|
7
|
+
# This shim delegates to 'bd hook pre-commit' which contains
|
|
8
|
+
# the actual hook logic. This pattern ensures hook behavior is always
|
|
9
|
+
# in sync with the installed bd version - no manual updates needed.
|
|
10
|
+
#
|
|
11
|
+
# The 'bd hook' command (singular) supports:
|
|
12
|
+
# - Per-worktree export state tracking
|
|
13
|
+
# - Dolt branch-then-merge pattern for cell-level conflict resolution
|
|
14
|
+
# - Hook chaining configuration
|
|
15
|
+
|
|
16
|
+
# Check if bd is available
|
|
17
|
+
if ! command -v bd >/dev/null 2>&1; then
|
|
18
|
+
echo "Warning: bd command not found in PATH, skipping pre-commit hook" >&2
|
|
19
|
+
echo " Install bd: brew install beads" >&2
|
|
20
|
+
echo " Or add bd to your PATH" >&2
|
|
21
|
+
exit 0
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
exec bd hook pre-commit "$@"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# bd-shim v1
|
|
3
|
+
# bd-hooks-version: 0.50.3
|
|
4
|
+
#
|
|
5
|
+
# bd (beads) pre-push hook - thin shim
|
|
6
|
+
#
|
|
7
|
+
# This shim delegates to 'bd hooks run pre-push' which contains
|
|
8
|
+
# the actual hook logic. This pattern ensures hook behavior is always
|
|
9
|
+
# in sync with the installed bd version - no manual updates needed.
|
|
10
|
+
|
|
11
|
+
# Check if bd is available
|
|
12
|
+
if ! command -v bd >/dev/null 2>&1; then
|
|
13
|
+
echo "Warning: bd command not found in PATH, skipping pre-push hook" >&2
|
|
14
|
+
echo " Install bd: brew install beads" >&2
|
|
15
|
+
echo " Or add bd to your PATH" >&2
|
|
16
|
+
exit 0
|
|
17
|
+
fi
|
|
18
|
+
|
|
19
|
+
exec bd hooks run pre-push "$@"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# bd-shim v1
|
|
3
|
+
# bd-hooks-version: 0.48.0
|
|
4
|
+
#
|
|
5
|
+
# bd (beads) prepare-commit-msg hook - thin shim
|
|
6
|
+
#
|
|
7
|
+
# This shim delegates to 'bd hooks run prepare-commit-msg' which contains
|
|
8
|
+
# the actual hook logic. This pattern ensures hook behavior is always
|
|
9
|
+
# in sync with the installed bd version - no manual updates needed.
|
|
10
|
+
#
|
|
11
|
+
# Arguments:
|
|
12
|
+
# $1 = path to the commit message file
|
|
13
|
+
# $2 = source of commit message (message, template, merge, squash, commit)
|
|
14
|
+
# $3 = commit SHA-1 (if -c, -C, or --amend)
|
|
15
|
+
|
|
16
|
+
# Check if bd is available
|
|
17
|
+
if ! command -v bd >/dev/null 2>&1; then
|
|
18
|
+
echo "Warning: bd command not found in PATH, skipping prepare-commit-msg hook" >&2
|
|
19
|
+
echo " Install bd: brew install beads" >&2
|
|
20
|
+
echo " Or add bd to your PATH" >&2
|
|
21
|
+
exit 0
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
exec bd hooks run prepare-commit-msg "$@"
|
|
File without changes
|