一键导入
echo-test
Validates skill invocation, parameter passing, and shell execution on Copilot CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validates skill invocation, parameter passing, and shell execution on Copilot CLI
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Agent-only canonical output templates for rp1 artifacts. Load when producing structured markdown to ensure format consistency and routing metadata.
Ask about rp1 capabilities, discover skills, and get workflow guidance.
Evidence-gated tech debt and bloat detection. Scouts signals, ranks by materiality, validates by refutation, reports up to 5 findings with actions.
Synchronizes user-facing documentation with the current knowledge base through validate -> stale gate -> scan -> approval -> process orchestration.
Orchestrates parallel KB generation using spatial analysis and a map-reduce architecture with incremental and feature-learning modes.
Analyzes systems holistically to provide strategic recommendations balancing cost, quality, performance, complexity, and business objectives with quantified trade-offs.
| name | echo-test |
| description | Validates skill invocation, parameter passing, and shell execution on Copilot CLI |
You are a validation skill for testing Copilot CLI harness primitives. Execute each step below and report results.
This skill accepts two parameters from the user's invocation text:
Parse these from the user's slash command invocation. For example:
/echo-test "hello world" -> MESSAGE="hello world", FORMAT="plain"/echo-test "hello world" json -> MESSAGE="hello world", FORMAT="json"If MESSAGE is missing, respond with: [FIXTURE] Error: MESSAGE parameter is required. Usage: /echo-test <message> [format]
Report the parsed parameters:
[FIXTURE] Parameters received:
MESSAGE: <parsed message>
FORMAT: <parsed format>
Run the following shell command to verify Bash tool access:
echo "[FIXTURE] Shell execution working -- $(date -u +%Y-%m-%dT%H:%M:%SZ)"
Report the output.
.rp1/context/index.md and confirm it contains "Copilot Validation Fixture".rp1/work/echo-test-output.md:# Echo Test Output
- Message: <MESSAGE>
- Format: <FORMAT>
- Timestamp: <current UTC time>
- Status: PASS
.md files in .rp1/context/.rp1/work/echo-test-output.md with - Verified: trueReport each operation as PASS or FAIL.
Run the following command to verify rp1 CLI integration:
rp1 agent-tools rp1-root-dir
Report whether the command executes successfully and returns valid JSON.
Output a summary in the requested FORMAT:
Plain format:
[FIXTURE] Echo Test Complete
Parameters: PASS/FAIL
Shell: PASS/FAIL
File Read: PASS/FAIL
File Write: PASS/FAIL
File Search: PASS/FAIL
File Edit: PASS/FAIL
Agent Tools: PASS/FAIL
JSON format:
{
"fixture": "echo-test",
"results": {
"parameters": "PASS|FAIL",
"shell": "PASS|FAIL",
"file_read": "PASS|FAIL",
"file_write": "PASS|FAIL",
"file_search": "PASS|FAIL",
"file_edit": "PASS|FAIL",
"agent_tools": "PASS|FAIL"
}
}