celesteops-review — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited celesteops-review (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when CelesteOps is the source of truth for review state. The goal is to help the user understand what is waiting in CelesteOps, what each item is asking for, and what should happen next.
documents_pending_review, documents_pending_decisions, document_get, document_set_review_status, document_decision_resolve, documents_search, documents_for_entity, document_backlinks, tasks_search, tasks_list, projects_list, and pipeline_list.../../README.md for the MCP connection shape and tell the user the skill cannot operate the review queue until the MCP is attached. Do not mutate SQLite directly as a substitute.documents_pending_review and documents_pending_decisions — a doc can wait on a user choice (an agent-authored decision) without being in the review-status queue.projects_list and then the relevant task or document search tools.pipeline_list.document_get before recommending approval or modification. document_get returns {document, comments, decisions} — read the embedded reasoning chain (agent comments + any open/resolved decisions) so you summarize the doc and its unresolved choices together.documents_for_entity, document_backlinks, tasks_search, or tasks_list when a doc references a task, repo, feature, or prior plan.celeste_index or celeste_code_review are available, use them only to validate claims or inspect referenced code; do not let them replace the CelesteOps review state.document_set_review_status when the user explicitly asks to approve, mark modified, clear review state, or submit something for review. The same rule covers document_decision_resolve (picking the chosen option / leaving a resolution note) and approve-with-note: these record the user's decision, so perform them only on explicit instruction. When the user approves or marks-modified with a reason, pass that reason as the note so it is filed as a comment on the status change.references/review-workflow.md for the normal decision tree and response shape.../../MCP.md only when you need exact tool contracts or edge-case behavior. It is the authoritative reference but much larger than the workflow guide.If you need a narrow section from MCP.md, search it first:
rg -n "documents_pending_review|documents_pending_decisions|documents_review_changes_since|document_set_review_status|document_decision_resolve|document_get|documents_for_entity|document_backlinks|projects_list|pipeline_list|tasks_search" ../../MCP.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.