status
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- Engineering
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Shell exec
- Write / modify
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: status
description: Project status dashboard — Copilot instructions budget, unfilled placeholders, lessons file size…
category: engineering
runtime: no special runtime
---
# status output preview
## PART A: Task fit
- Use case: Project status dashboard — Copilot instructions budget, unfilled placeholders, lessons file size, hooks executability, jq availability, plugin states. One-glance health report. Use when this capability is needed..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “1. copilot-instructions.md budget / 2. Unfilled placeholders / 3. Lessons file size” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Project status dashboard — Copilot instructions budget, unfilled placeholders, lessons file size, hooks executability, jq availability, plugin states. One-glance health report. Use when this capability is needed.”.
- **02** When the source has headings, the agent prioritizes “1. copilot-instructions.md budget / 2. Unfilled placeholders / 3. Lessons file size” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, run shell commands, write/modify files; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, run shell commands, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, run shell commands, write/modify files.
Start with a small task and check whether the result follows “1. copilot-instructions.md budget / 2. Unfilled placeholders / 3. Lessons file size”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: status
description: Project status dashboard — Copilot instructions budget, unfilled placeholders, lessons file size…
category: engineering
source: tomevault-io/skills-registry
---
# status
## When to use
- Project status dashboard — Copilot instructions budget, unfilled placeholders, lessons file size, hooks executability…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “1. copilot-instructions.md budget / 2. Unfilled placeholders / 3. Lessons file size” and keep inference separate from source facts.
- read files, run shell commands, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "status" {
input -> user goal + target files + boundaries + acceptance criteria
context -> 1. copilot-instructions.md budget / 2. Unfilled placeholders / 3. Lessons file size
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, run shell commands, write/modify files | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Status Skill — Project Dashboard
Give a one-glance status report of the Copilot Brain setup for this repo.
Run these checks in order and report each as ✅ / ⚠️ / ❌:
1. copilot-instructions.md budget
wc -c < .github/copilot-instructions.md 2>/dev/null || echo "MISSING"
wc -l < .github/copilot-instructions.md 2>/dev/null || echo "0"
- ✅ ≤ 32768 bytes (32KB) · ⚠️ 28000–32768 · ❌ > 32768 or missing
2. Unfilled placeholders
grep -rEc '\{\{[A-Z_]+\}\}' .github/copilot-instructions.md context/ .github/skills/ 2>/dev/null | awk -F: '{s+=$2} END {print s+0}'
- ✅ 0 (end-user repo) · ⚠️ > 0 (bootstrap still has unfilled slots)
3. Lessons file size
wc -l < context/tasks/lessons.md 2>/dev/null || echo "0"
- ✅ ≤ 400 lines · ⚠️ 401–500 · ❌ > 500 (archive to
context/tasks/lessons-archive-YYYY.md)
4. Hooks executability
for h in .github/hooks/scripts/*.sh; do test -x "$h" || echo "NOT_EXEC: $h"; done
echo "HOOKS_DONE"
- ✅ all executable · ❌ any NOT_EXEC line
5. jq availability
command -v jq &>/dev/null && echo "PRESENT" || echo "MISSING"
- ✅ present · ⚠️ missing —
brew install jq/sudo apt install jq
6. Plugin states
command -v uvx &>/dev/null && echo "uvx: installed" || echo "uvx: MISSING (uvx-based plugins unavailable)"
command -v npx &>/dev/null && echo "npx: installed" || echo "npx: MISSING (playwright unavailable)"
command -v ccc &>/dev/null && echo "cocoindex CLI (ccc): installed" || echo "cocoindex CLI (ccc): optional"
# codebase-memory, code-review-graph, serena, cocoindex-code-mcp-server all run via uvx
# playwright runs via npx
- ✅ uvx installed · ⚠️ missing (run
brew install uv/pip install uv)
7. Instructions file size
wc -c < .github/copilot-instructions.md 2>/dev/null || echo "0"
- ✅ ≤ 32768 bytes · ⚠️ > 32768 bytes
Report Format
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Copilot Brain Status — <repo>
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
copilot-instructions.md ✅ 218 lines / 7.1KB (budget: 32KB)
Placeholders ✅ 0 unfilled
Lessons file ✅ 312 / 500 lines
Hooks ✅ 9/9 executable
jq ✅ present
codebase-memory-mcp ✅ installed
cocoindex (ccc) ⚠️ missing — run setup-plugins.sh
code-review-graph ✅ installed
serena ✅ available via uvx
playwright ✅ available via uvx
MCP servers ✅ 3 configured
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Overall: ⚠️ healthy (1 warning)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
After the table, list ⚠️/❌ items with one-line fix instructions.
Source: brain-bootstrap/copilot-brain-bootstrap — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review