plandb
The issue tracker your AI agents are missing. Think Linear or Jira, but for your Claude Code..
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo install
설명 보기 ▼
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
설명 보기 ▼
compare
이 명령은 `magick compare`의 별칭입니다.
tldr magick compare
자세한 내용은 원본 명령을 참고하세요:
split
설명 보기 ▼
split
파일을 여러 조각으로 분할.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/split-invocation.html>.
split {{[-l|--lines]}} 10 {{path/to/file}}
파일을 10줄씩 분할 (마지막 조각 제외):
split -l 10 {{path/to/file}}
파일을 각 조각이 10줄씩 되도록 분할 (마지막 조각 제외):
split {{[-n|--number]}} 5 {{path/to/file}}
파일을 5개의 파일로 분할. 각 조각이 동일한 크기를 갖도록 분할 (마지막 조각 제외):
