plandb
The issue tracker your AI agents are missing. Think Linear or Jira, but for your Claude Code..
File Explorer
- bug_report.yml
- feature_request.yml
- ci.yml
- release-drafter.yml
- release.yml
- CODEOWNERS
- FUNDING.yml
- PULL_REQUEST_TEMPLATE.md
- release-drafter.yml
- agent-scale.png
- comparison.png
- hero.png
- ARCHITECTURE.md
- build-docs-site-claude.sh
- build-docs-site-codex.sh
- build-docs-site-gemini.sh
- build-mini-gpt-claude.sh
- PLANDB_PROMPT.md
- __init__.py
- api.py
- fib.py
- test_api.py
- test_fib.py
- __init__.pyi
- experiment-log.md
- pyrightconfig.json
- requirements.txt
- __init__.py
- cli.py
- storage.py
- test_quicknote_cli.py
- pyproject.toml
- README.md
- work-log.md
- __init__.py
- cli.py
- db.py
- test_cli.py
- pyproject.toml
- work-log.md
- EXPERIMENT.md
- 404.html
- architecture.html
- cli-reference.html
- getting-started.html
- index.html
- nav.js
- playground.html
- playground.js
- styles.css
- app.js
- architecture.html
- cli-reference.html
- getting-started.html
- index.html
- playground.html
- playground.js
- styles.css
- arch.html
- guide.html
- index.html
- playground.html
- reference.html
- style.css
- custom_rl_log.csv
- dpo_log.csv
- experiment_results.csv
- final_comparison.csv
- reinforce_log.csv
- rejection_sampling_results.csv
- sft_loss.csv
- sft_v2_loss.csv
- sft_v2_results.csv
- sft_v3_loss.csv
- sft_v3_results.csv
- training_log.csv
- data.rs
- experiments.rs
- main.rs
- model.rs
- tensor.rs
- tokenizer.rs
- tool_data.rs
- tool-agent.mgpt
- vocab.txt
- Cargo.lock
- Cargo.toml
- README.md
- fibonacci.py
- README.md
- run.sh
- test_fibonacci.py
- API_DESIGN.md
- app.py
- Dockerfile
- requirements.txt
- test_app.py
- improved-prompt-v1.md
- FINDINGS.md
- GOALS.md
- commands.rs
- helpers.rs
- mod.rs
- artifact.rs
- events.rs
- mod.rs
- project.rs
- artifacts.rs
- dependencies.rs
- effects.rs
- events.rs
- files.rs
- learnings.rs
- meta.rs
- mod.rs
- notes.rs
- projects.rs
- schema.rs
- sweeper.rs
- tasks.rs
- templates.rs
- tests.rs
- mod.rs
- protocol.rs
- server.rs
- tools.rs
- artifact.rs
- dependency.rs
- event.rs
- mod.rs
- note.rs
- project.rs
- task.rs
- mod.rs
- routes.rs
- sse.rs
- lib.rs
- main.rs
- functional_test.sh
- .gitignore
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- CLAUDE.md
- CONTRIBUTING.md
- install.sh
- LICENSE
- README.md
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo install
View Details ▼
cargo install
Build and install a Rust binary.
cargo install {{package}}@{{version}}
Install a package from <https://crates.io> (the version is optional - latest by default):
cargo install --git {{repo_url}}
Install a package from the specified Git repository:
cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}
Build from the specified branch/tag/commit when installing from a Git repository:
compare
View Details ▼
compare
This command is an alias of `magick compare`.
tldr magick compare
View documentation for the original command:
split
View Details ▼
split
Split a file into pieces.
split {{[-l|--lines]}} 10 {{path/to/file}}
Split a file, each split having 10 lines (except the last split):
split -l 10 {{path/to/file}}
Split a file, each split having 10 lines (except the last split):
split {{[-n|--number]}} 5 {{path/to/file}}
Split a file into 5 files. File is split such that each split has same size (except the last split):
