スキル一覧に戻る
galligan

pickme-configuration

by galligan

Fast file search with frecency-based ranking for Claude Code

3🍴 0📅 2026年1月16日
GitHubで見るManusで実行

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 defaults
  • index.exclude.patterns overrides defaults and excludes when set
  • index.include_gitignored is an alias for index.exclude.gitignored_files
  • Use [[roots]] with disabled = true or index.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

  1. Minimal diffs: only change what is needed
  2. Preserve comments and ordering when possible
  3. Validate after edit: run pickme config --validate
  4. Show before and after, then ask for confirmation

Validation

After any config edit:

pickme config --validate
pickme status

Troubleshooting Config

SymptomCheckFix
Files missingpickme rootsAdd or enable root
Too many resultsCheck excludesAdd patterns
Slow indexingCheck depthReduce max_depth
Gitignored files missingCheck include_gitignoredSet to true

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です