configure-review
Use when configuring or changing a repository's tracked branches, layered review policy, ignored tracked paths, retrieval limits, summary depth, or …
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Configure Review
Always answer the user in Russian. Update only the requested policy values; Never clobber foreign
keys such as categories. This skill is standalone: no reviewer MCP, database, or board connection
is required for the baseline.
Scope
Manage summary_cluster_depth, summary_cluster_depth_overrides, summary_topk_threshold,
summary_paths.ignore, paths.ignore, context_limits, and the optional task_board block,
including its generic sync_filter. An empty task_board: disables the board for this repository. Never read, request,
display, or write credential values in either policy target.
Tracked branches are separate from review policy. Manage repository.primary_branch and
repository.index_branches only in the home per-repo target. The committed .review.yml cannot
own repository, because branch selection must be available before a committed ref can be read.
Untracked .venv, node_modules, __pycache__, dist, and build are gitignored and never
enter the index. Do not use a filesystem walk to find them.
Safe YAML preflight
Inspect each selected policy or home YAML file with a local boolean-only process.
Run this preflight before any tool call that can return file contents.
Return only safe/blocked, never matching lines, values, or exception text. Do not use Read or Grep
to perform this preflight. The process must reject non-regular or symlinked files, malformed or
non-mapping YAML, and credential-like keys at any depth. Also reject duplicate mapping keys,
including duplicate repository keys and duplicate branch fields. Reject anchors, aliases, and merge keys.
Reject these cases before reading or mutating the file in model context.
Only after a safe result may a content-returning tool read the file for a line-oriented edit.
For a home target, derive the canonical home config root lexically even when it does not exist.
Check every existing parent path component through the destination without following symlinks;
reject symlinks and non-directories. Missing destinations, including a missing home config root,
are allowed only when the nearest existing parent is a real directory and the normalized
destination remains inside the canonical home config root. After creating any missing directories,
run the path preflight again. Also re-check immediately before writing so a changed path never
inherits an earlier safe result.
Pipeline
- Resolve the canonical lowercase repository id and the target branch. Present these targets in
this order and ask the user to select one:
- Recommended/default:
home:repos/<owner>/<name>.yml, stored at
$XDG_CONFIG_HOME/rag-reviewer/repos/<owner>/<name>.yml (or
~/.config/rag-reviewer/... when XDG_CONFIG_HOME is unset). It needs no commit and is not
visible to the team.
- Team-visible: committed
.review.ymlat the selected target ref. It is committed and
visible to the team; read it from that ref, never from an uncommitted worktree file.
For a nested id such as group/service, use home:repos/group/service.yml. A home policy is
owned by the OS account running reviewer: on a shared service account it can affect that
account's workloads, so use committed policy for team-owned settings.
- After the target is selected, verify the repository with
git rev-parse --git-dir, run the Safe
YAML preflight, and only then read the selected file, preserving unrelated keys and comments.
Do not inspect or copy credentials.
- Scan only tracked Python files:
git -C <path> ls-tree -r --name-only <branch> | grep '\.py$'
Count directory prefixes at depths 1–3. This is not a filesystem walk.
- Measure churn with
git log --since="6 months ago" --name-only --pretty=format: -- '*.py'.
If history is too short or unavailable, say so and recommend from structure alone.
- Propose depth and ignore changes. Ask the user about every candidate for
paths.ignoreand
never write it silently. Assemble a draft that preserves the selected file's unrelated
keys/comments, then request final confirmation before writing it. Follow the exact rebuild map
below; suggest but do NOT run a follow-up skill. When branch and policy changes share a run,
assemble both drafts first, show both paths and diffs, and request one final confirmation before
either write.
Repository branches
Handle branches before policy analysis whenever the user asks to inspect or change tracked
branches.
- Resolve the local repository without network calls:
git rev-parse --show-toplevelgives the git root;git remote get-url origingives the canonical SSH/HTTPS remote candidate;- normalize it to lowercase
<owner/name>with the same SSH/HTTPS forms accepted by reviewer; - if origin is absent or unrecognized, ask for
<owner/name>explicitly.
Network git commands are forbidden.
- Run
reviewer config show --repo <owner/name> --jsonand show the effective primary branch,
ordered index branches, and source. A policy/VCS diagnostic error does not erase the returned
branch section; a malformed home config is a blocking error and must not fall back silently.
- Ask for
repository.primary_branch, then ask for the complete ordered unique
repository.index_branches. The primary must be present in the index list. Reject empty names,
duplicates, and a primary outside the list.
- The destination is always
$XDG_CONFIG_HOME/rag-reviewer/repos/<owner>/<name>.yml (or the equivalent
~/.config/rag-reviewer/... path when XDG is unset).
Never write repository to committed .review.yml, even when committed policy is selected for
other keys. If policy and branches
change together, treat them as two targets in one preview.
- Run the Safe YAML preflight on the destination before reading it. Stop on every blocked result.
Build a line-oriented patch: if repository is absent, append the canonical block; if it exists,
replace only primary_branch and index_branches. Preserve all top-level keys and unknown repository subkeys.
Preserve comments, line endings, and surrounding YAML style.
Never serialize the complete file with yaml.safe_dump.
- Show the destination, source, old and new branch values, and the exact patch. Request one
final confirmation before any branch or policy write. A rejection leaves every target unchanged.
- After writing, run
reviewer config show --repo <owner/name> --jsonagain and require the
exact primary/index/source expected from the home per-repo layer. Report a mismatch as an error.
If newly added index branches are not indexed, suggest rag-reviewer:sync-codebase once per new
branch, but do not run it. A primary change to an already indexed branch needs no rebuild. Removing
a branch stops reviewer from selecting it but does not delete its old base index automatically.
Branch changes never trigger subsystem-summary work.
Rebuild guidance
- Changed
paths.ignore→ suggestrag-reviewer:sync-codebase. - Changed
summary_cluster_depth→ suggestrag-reviewer:summarize-subsystems. - Changed
summary_cluster_depth_overrides→ suggestrag-reviewer:summarize-subsystems. - Changed
summary_paths.ignore→ this key is part of the summarylayout_token; suggest
rag-reviewer:summarize-subsystems and warn it forces a **full rebuild of every subsystem
summary** (same layout_token invalidation as summary_cluster_depth/
summary_cluster_depth_overrides).
- Changed
summary_topk_threshold→ no rebuild needed. - Changed
context_limits→ no rebuild needed. - Changed
task_board.sync_filter→ suggestrag-reviewer:sync-tasksfor a full unlimited run
(limit=null); do NOT run it automatically.
Generic board metadata
Ask whether to keep, disable, or configure task_board. A configured block uses only this shape:
task_board:
type: <registered board_type>
project: <optional project prefix>
key_pattern: '<optional task-key pattern>'
create_target: <selected target id or null>
done_target: <selected target id or null>
options: {}
sync_filter:
max_age_days: <integer >= 1, or omit for no age limit>
include_archived: <boolean, default true>
project scopes board sync and task retrieval. Explain that an empty task_board.project can mix
all projects, then ask for the intended project prefix.
sync_filter is a generic sibling of provider options. The sync_filter block is optional.
Never put sync_filter under options. Ask two separate questions:
max_age_days: choose an integer greater than or equal to 1, or no age limit.include_archived: choose whether archived tasks are included; the default istrue.
Age uses task last-modified time and an inclusive cutoff: a task modified exactly at the cutoff is
eligible. Archive is distinct from terminal/done; include_archived: false excludes only tasks
known to be archived. Age filtering runs first. Only while include_archived: false, unknown
archive metadata does not itself exclude the row; an archive warning is emitted only then and only
when age filtering did not already exclude the row.
Editing sync_filter safely
When changing only sync_filter, use this deterministic materialization procedure:
- Read policy layers in precedence order: non-secret ENV/deploy
task_boarddefaults,
home:review.yml, committed .review.yml, then home:repos/<owner>/<name>.yml; stop at the
selected target. Never inspect or copy credential env values. For a committed target, do not
read the higher repo-home layer. For the recommended home per-repo target, include all layers.
- If the selected layer has a non-empty
task_boardmapping, use that mapping alone as the edit
base. Preserve every sibling and field-attached comment already present, but do not copy or
overlay omitted fields from lower layers: the selected mapping already shadows the complete
lower block.
- If the selected layer has no
task_boardkey, resolve only the lower layers with normal
whole-block replacement, then materialize the complete lower effective non-secret task_board
into the selected-layer draft. Copy type, project, key_pattern, url_template,
create_target, done_target, options, every other non-secret sibling, and field-attached
comments. If no lower board exists, ask for a fully configured board; never write a new partial
task_board containing only the filter.
- If the selected layer explicitly contains null or an empty mapping, preserve that disable and do
not add sync_filter. Only proceed when the user explicitly chooses to replace it with a fully
configured board assembled from confirmed values; never resurrect lower fields silently.
- For cases 2 or 3, patch only
sync_filterin the chosen or materialized block. The selected layer
remains a self-contained whole-block replacement.
Because policy layers replace the whole task_board block, preserve every sibling field and
comment when changing sync_filter. Repositories using the same project share one task corpus, so
different retention views require different project scopes. Keep home per-repo as the recommended
target for repository-specific policy. A filter change is evaluated on the next successful full
sync and backfills newly eligible tasks; purge remains explicit and is never enabled by a filter
change.
When a board type is selected, call the read-only discovery tool:
get_board_targets(board_type=<type>, project=<project>, provider_options=<task_board.options or {}>)
Its normalized response is {board_type, project, targets, options, warnings}. Present a
pick-list of targets by label; use purposes to select create_target and done_target.
For every option whose required_for contains sync, create, or finish, present its choices
by label and write the selected id into task_board.options. If discovery is unavailable, empty,
or returns an error, fall back to asking the user for each required generic value. Do not guess
targets or options.
The resulting values are non-secret metadata. Board access is configured outside this file; do not
request, display, or write credentials.
Retrieval profile
Choose one profile from tracked-file structure and write all real context_limits fields:
| Profile | Condition | search_codebase: floor / ceiling / ratio / abs_floor / candidate_pool / ann_distance_max | graph: hops / callers_topk |
|---|---|---|---|
| tiny-util | fewer than 80 tracked Python files and one package | 3 / 8 / 0.60 / 0.35 / 20 / 0.65 | 1 / 20 |
| standard | 80–800 files | 4 / 15 / 0.50 / 0.30 / 30 / 0.65 | 1 / 25 |
| large / monorepo | over 800 files or at least three large packages | 4 / 25 / 0.45 / 0.30 / 40 / 0.60 | 1 / 30 |
Map count_tasks(project) to search_tasks deterministically: < 150 → 3 / 8;
150–800 → 3 / 10; 800+ → 4 / 14. A missing tool, zero count, or unavailable corpus
falls back to asking the user for small/medium/large, then uses the same mapping.
context_limits.code_section is the file budget for the task-context code section
(prepare_task_context): max_files: 20, max_chunks_per_file: 1, chars_per_file: 975,
max_augmented_files: 3. These four defaults are the same across all three profiles above —
there is no measurement backing a per-profile split, so do not invent one. The budget unit here
is the FILE, not the chunk; there is no separate character-cap key, the effective character
ceiling is derived from max_files/max_chunks_per_file/chars_per_file. max_augmented_files
(PRI-257) is a RESERVE of file slots inside max_files for diff paths mixed in from similar
tasks (similar-diffs, the section's only augmentation source) — not a cap applied to whatever
the hybrid search leaves over. Write it alongside the other real context_limits fields:
context_limits:
search_codebase:
floor: <profile value>
ceiling: <profile value>
ratio: <profile value>
abs_floor: <profile value>
candidate_pool: <profile value>
ann_distance_max: <profile value>
search_tasks:
floor: <board-size value>
ceiling: <board-size value>
graph:
hops: <profile value>
callers_topk: <profile value>
code_section:
max_files: 20
max_chunks_per_file: 1
chars_per_file: 975
max_augmented_files: 3
Preserve every other configuration key and ask for confirmation before writing the assembled draft.
Completion
Report old/new branches, the selected branch source, changed policy keys, selected generic
targets/options, and any recommended follow-up. This skill makes configuration-only recommendations
and has no index side effects.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/mimfort/rag_for_git/plugin/skills/configure-review/SKILL.md