一键导入
roster-config
Discover, inspect, and interactively set tunables across installed roster agents — with guided dependency installation for optional features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Discover, inspect, and interactively set tunables across installed roster agents — with guided dependency installation for optional features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit code quality against KB-defined properties, invariants, and naming conventions.
Quality and compliance audit — combines code-quality and spec-compliance into one actionable report.
Periodic friction analysis — proposes new skills, deterministic tools, and adaptations.
Propose bounded self-improvement loops from KB, code, tests, issues, and CI signals.
Run a bounded verification-first improvement loop from an approved loop spec.
Health check + pipeline pre-flight — verifies roster install integrity and that the project's dev environment (build/test/lint/format) is actually runnable before work starts.
| name | roster-config |
| description | Discover, inspect, and interactively set tunables across installed roster agents — with guided dependency installation for optional features. |
| when_to_use | Use to discover, inspect, or set tunables across installed agents, with guided dependency install. Trigger: 'configure roster', 'change a tunable', 'enable optional feature'. |
| version | 1.0.1 |
You help users discover and configure the tunables exposed by their installed roster agents. You read installed agent files, surface available settings grouped by impact tier, and rewrite frontmatter for any changes the user approves.
Scope: operates on agents installed in the current project (.claude/commands/ or .harness/agents/ or agents/). Falls back to the roster source tree if no installed harness is found.
# Priority order: installed harness → claude commands → roster source
[ -d .harness/agents ] && echo ".harness/agents" || \
([ -d .claude/commands ] && echo ".claude/commands") || \
([ -d agents ] && echo "agents (roster source)")
If no agent directory is found, report:
⚠️ No installed harness found. Run
/roster-initfirst, or run this from a project with an installed roster harness.
Walk all .md files in the found directory. For each file with a tunables: frontmatter block, extract:
name: or filename)tunables:# ... after the value)Build an inventory: { agent, key, value, description, has_ext_dep }.
Mark has_ext_dep: true for any tunable whose inline comment or description mentions pip install, npm install, brew install, or a package name.
Present tunables grouped by tier:
📦 Roster Config — Installed Tunables
🔴 Tier 1 — Optional capabilities with external deps
kb-agent › search_index false # set true to enable LanceDB semantic index
dep: pip install lancedb OR npm install @lancedb/lancedb
🟡 Tier 2 — Project-specific paths (must be customized)
migration-guard › schema_module "" # path to module containing current_version and all_ddl
migration-guard › migration_test_file "" # path to the migration-path test file
pr-workflow › pre_push_validator "" # e.g. "gitwright validate" — leave blank to skip
pr-workflow › pre_pr_checks "" # project-specific pre-PR command
🟢 Tier 3 — Feature toggles (safe defaults, may want to flip)
implementer › use_worktree true
reviewer › require_security_pass true
tech-lead › require_review true
tech-lead › require_qa true
architect › enforce_architecture_doc true
...
⚙️ Tier 4 — Numeric thresholds
architect › max_file_lines 500
architect › max_function_lines 50
tech-lead › max_parallel_implementers 5
...
After display, ask:
"Which tunable do you want to configure? (e.g.
kb-agent search_index, or 'none' to exit)"
For each tunable the user selects:
Show current value and description.
If has_ext_dep: true, show install instructions before asking for a new value:
⚠️ This feature requires an external dependency. Install with:
pip install lancedb(Python) ornpm install @lancedb/lancedb(Node) Have you installed it? [y/n] If user says no: explain the feature remains disabled and skip the value change.
Ask for new value:
"Current:
false. New value? (leave blank to keep current)"
Validate the value type matches the original (boolean, string, number, list).
Show a preview of the change:
"Will change
search_index: false→search_index: truein<agent-file-path>" "Confirm? [y/n]"
If confirmed: rewrite the frontmatter in the agent .md file.
<key>: <old-value> in the tunables: block, replace value only.Report:
✓
<agent-name> › <key>set to<new-value>in<file>
Ask: "Configure another tunable? [y/n]"
After the session:
Roster Config — Changes Applied
kb-agent › search_index: false → true
architect › max_file_lines: 500 → 300
Next steps:
- If search_index was enabled: run /kb-reindex to build the initial index
- If harness sync is needed: ./scripts/sync-harness.sh <project-root>