一键导入
self-evaluation
Use at agent shutdown to write structured improvement signals. Carried by all agents when feedback is enabled. Zero cost during productive work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use at agent shutdown to write structured improvement signals. Carried by all agents when feedback is enabled. Zero cost during productive work.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when creating a local agent for a pas-clief workspace. Walks the user through naming the agent, defining its role, listing its skills, and writing CLAUDE.md and CONTEXT.md from templates. The agent lands in `library/agents/<name>/`.
Use when drafting and publishing a newsletter issue. Walks research → draft → publish phases, using the writer agent. Example library process for pas-clief — copy or extend it for your own use.
Use when applying a workspace's drafting conventions to written output — voice, format, sentence rhythm, the things that make output feel like it belongs to this project. Reads the workspace's style notes if any and adjusts the draft accordingly.
Use when line-editing a draft for clarity and economy. Tightens sentences, removes filler, rewrites awkward constructions, ensures every sentence earns its keep. Apply this skill on the final pass before output.
Use when an agent needs to gather sources or background information from the web for a topic. Produces a concise sources file with URLs, summaries, and the most relevant excerpts.
Use when checking that a pas-clief workspace is current with the latest plugin conventions, or when migrating from an older version. Walks a checklist of structural and template changes and offers to apply each.
| name | self-evaluation |
| description | Use at agent shutdown to write structured improvement signals. Carried by all agents when feedback is enabled. Zero cost during productive work. |
Write structured improvement signals at shutdown. This skill activates only at shutdown step 3 (after receiving downstream feedback, before final shutdown). It costs zero tokens during productive work.
.pas/config.yamlDo NOT activate during work. Do NOT evaluate while producing output. Wait until shutdown.
Reflect on the session: what went well, what went wrong, what the user corrected
For each observation, determine the signal type (see below)
Write signals to .pas/workspace/{process}/{slug}/feedback/{your-agent-name}-{session_id}.md
The session ID is provided by the SessionStart hook and recorded in status.yaml under current_session. If no session ID is available, use your agent name without a suffix.
If nothing went wrong: write "No issues detected." and stop. Do NOT list positives.
User preferences with long-term implications ("stop doing X", "always do Y").
[PPU-01]
Target: skill:{skill-name}
Frequency: {how often this preference was expressed}
Evidence: "{exact quote or description from session}"
Priority: {HIGH | MEDIUM | LOW}
Preference: {what the user wants going forward}
Issues that degraded output quality (factual errors, instruction non-compliance, inefficiency).
[OQI-01]
Target: skill:{skill-name}
Degraded: {what aspect of output was degraded}
Root Cause: {why this happened}
Fix: {specific change to prevent recurrence}
Evidence: "{exact quote or description from session}"
Priority: {HIGH | MEDIUM | LOW}
Changes that should NOT be implemented (frustration-driven, safety-degrading, or would break working behavior).
[GATE-01]
Target: skill:{skill-name}
Rejected Change: {what change was considered}
Why Rejected: {why it should not be made}
Alternative: {better approach, if any}
Evidence: "{context for why this gate exists}"
Behavior confirmed to work well, that must be preserved during future upgrades. Use sparingly. Only write STA when success occurred in a risky context that future changes might break.
[STA-01]
Target: skill:{skill-name}
Strength: {CONFIRMED_BY_USER | OBSERVED}
Behavior: {exact behavior to preserve}
Context: {what made this session risky for this behavior}
Target format: Always one of:
skill:{name} — targets a specific skillagent:{name} — targets agent-level behaviorprocess:{name} — targets process-level definitionAdditional target: framework:pas — targets the PAS framework itself (not a specific process artifact). See Framework Feedback Routing below.
Signal ID format: [TYPE-NN] where NN is sequential within the file (e.g., [PPU-01], [OQI-01], [OQI-02]).
Priority levels:
When a signal targets the PAS framework itself (not a specific process, agent, or skill), use Target: framework:pas. This applies when:
Routing chain:
.pas/workspace/{process}/{slug}/feedback/{agent-name}.md with Target: framework:pasRoute: github-issue to the signal blockRoute: github-issue, and files them as GitHub issues on the PAS repositoryThe agent's job is to detect and record the signal. The orchestrator's job is to route it. The COMPLETION GATE (in the orchestration pattern) blocks session completion until all framework:pas signals have been filed.
Never write feedback about the feedback system itself. The loop is strictly: work, feedback, apply, work. Never: work, feedback, feedback-about-feedback.
Exception: only when the user explicitly points PAS at its own feedback system (e.g., "the routing keeps misclassifying signals"). That is normal user feedback routed to PAS's own artifacts, not recursive self-feedback.
Report what you observed. Include evidence and target. Do not evaluate whether it is worth fixing. The quality improvement framework (Efficiency Test, Accuracy Test, Alignment Test, UX Test) lives in the feedback applicator, which has cross-session context to judge what is worth changing. Your job is accurate signal detection, not signal evaluation.