← Back to list

pickme-configuration
by galligan
Fast file search with frecency-based ranking for Claude Code
⭐ 3🍴 0📅 Jan 16, 2026
SKILL.md
name: pickme-configuration description: Guides pickme configuration with recipes for common tasks like excluding directories, adding namespaces, adjusting depth, and toggling gitignore handling. Use when editing pickme config, troubleshooting indexing, or when pickme, config, exclude, roots, or namespace are mentioned. allowed-tools: Read, Edit, Bash(pickme *)
Pickme Configuration Skill
Teach Claude how to edit pickme configuration effectively with minimal diffs.
Config File Format
Pickme uses TOML. Use pickme config --path to find the active config file.
Example:
active = true
[[roots]]
path = "~/projects"
namespace = "proj"
# disabled = true
[[excludes]]
pattern = "node_modules"
[index]
max_depth = 10
include_gitignored = false
[index.depth]
"/Users/you/projects" = 5
[index.exclude]
# patterns = ["vendor"]
# gitignored_files = false
Notes:
[[excludes]]is additive to defaultsindex.exclude.patternsoverrides defaults and excludes when setindex.include_gitignoredis an alias forindex.exclude.gitignored_files- Use
[[roots]]withdisabled = trueorindex.disabled = ["/path"]to disable a root
Common Recipes
Exclude a Directory
[[excludes]]
pattern = "dist"
Add a Namespace
[[roots]]
path = "/path/to/code"
namespace = "myns"
Adjust Max Depth
[index]
max_depth = 5
[index.depth]
"/path/to/code" = 3
Include Gitignored Files
[index]
include_gitignored = true
Disable Pickme Globally
active = false
Edit Principles
- Minimal diffs: only change what is needed
- Preserve comments and ordering when possible
- Validate after edit: run
pickme config --validate - Show before and after, then ask for confirmation
Validation
After any config edit:
pickme config --validate
pickme status
Troubleshooting Config
| Symptom | Check | Fix |
|---|---|---|
| Files missing | pickme roots | Add or enable root |
| Too many results | Check excludes | Add patterns |
| Slow indexing | Check depth | Reduce max_depth |
| Gitignored files missing | Check include_gitignored | Set to true |
Score
Total Score
50/100
Based on repository quality metrics
✓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
Reviews
💬
Reviews coming soon