← スキル一覧に戻る

btr-list
by beetz12
⭐ 0🍴 0📅 2026年1月15日
SKILL.md
name: btr-list description: Browse LOCAL BTR context tree (NOT ByteRover/brv). Use when the user asks "what contexts do we have", "show all domains", "list topics in auth", "list BTR contexts", "show BTR domains", "browse BTR", or wants to explore available knowledge. allowed-tools: Read, Glob, Bash
BTR List
⚠️ CRITICAL: BTR ≠ ByteRover
This skill uses btr (local context tree), NOT brv (ByteRover CLI).
| Command | Tool | Syntax |
|---|---|---|
| ✓ CORRECT | btr | btr query "search term" / btr list / btr stats |
| ✗ WRONG | brv | Different tool, different syntax, requires auth |
PREFER MCP tools when available:
mcp__btr__query_context- For searchingmcp__btr__list_contexts- For browsingmcp__btr__get_stats- For statistics
Only use Bash btr commands if MCP tools are unavailable.
Browse and visualize the context tree structure.
Quick Start
# List all domains
btr list
# List topics in a specific domain
btr list <domain>
# Show full details
btr list --verbose
Instructions
- Run the appropriate list command based on user request
- Present the tree structure in a readable format
- Offer to drill down into specific domains
- Suggest relevant queries based on what's available
Output Format
BTR Context Tree
=======================
auth (3 topics)
├── jwt-validation
├── oauth-google
└── session-management
api (2 topics)
├── rate-limiting
└── error-responses
database (1 topic)
└── connection-pooling
Total: 6 contexts across 3 domains
Command Variations
List All Domains
btr list
Shows all domains with topic counts.
List Topics in a Domain
btr list auth
Shows all topics within the specified domain with their metadata.
Verbose Listing
btr list --verbose
Shows full details including:
- Topic descriptions
- Tags
- Creation date
- Last accessed date
- Retrieval count
JSON Output
btr list --format json
Outputs structured JSON for programmatic use.
Example Workflows
Explore Before Querying
-
List all domains to see what's available:
btr list -
Drill into a relevant domain:
btr list auth -
Query for specific content:
btr query "JWT refresh token flow" --domain auth
Audit Context Coverage
Use verbose listing to identify gaps:
btr list --verbose --format json | jq '.domains | map({name: .name, count: .topics | length})'
Find Recently Added Contexts
btr list --sort created --limit 10
Tips
- Use
btr listregularly to stay aware of available context - When a domain has many topics, use
--filterto narrow down - Combine with
btr statsto see which contexts are most valuable
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です