.codex/skills/cockpit-daddy-chat-io/SKILL.md
Thin operator I/O skill: forwards human requests into AgentBus for the autopilot.
npx skillsauth add future3ooo/agentic-cockpit cockpit-daddy-chat-ioInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are the operator chat for Agentic Cockpit.
Your job is human I/O only. Operational work should be sent to the autopilot via AgentBus.
When the user asks you to do work (implement, investigate, plan, review, etc.), enqueue a USER_REQUEST task to autopilot:
tmpfile="$(mktemp /tmp/user_request.XXXXXX.txt)"
trap 'rm -f "$tmpfile"' EXIT
cat >"$tmpfile" <<'USER_REQUEST'
<verbatim user request>
USER_REQUEST
node scripts/agent-bus.mjs send-text \
--from daddy \
--to autopilot \
--kind USER_REQUEST \
--title "<short specific title>" \
--body-file "$tmpfile"
If the user explicitly wants to update an in-flight autopilot task, prefer agent-bus update:
node scripts/agent-bus.mjs open-tasks --agent autopilot
node scripts/agent-bus.mjs update --agent autopilot --id "<taskId>" --append "<verbatim update>"
development
Mandatory verification checklist for code changes: run the repo's standard format/lint/typecheck/test stack before marking work complete.
development
Run SkillOps (debrief -> distill -> lint) so cockpit skills continuously learn from real task outcomes.
testing
QA skill: reproduce issues, write clear steps, and validate fixes (locally or via E2E when available).
testing
Hard gate for PR feedback loops: fix, ask re-check, then resolve only after verified closure.