From zforge
Use when the user says "autopilot", "auto mode", "替我回答", or "自动回答". Enables autonomous decision-making by answering Claude's own questions based on the user's personality profile.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zforge:autopilotThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When enabled, intercept all AskUserQuestion calls. Instead of asking the user, consult `~/.claude/principles.md` to predict what the user would answer, then proceed with that answer automatically.
When enabled, intercept all AskUserQuestion calls. Instead of asking the user, consult ~/.claude/principles.md to predict what the user would answer, then proceed with that answer automatically.
User says /autopilot or "autopilot on". From that point forward in this session:
~/.claude/principles.md.[autopilot] Q: <your question> → A: <predicted answer> (based on: <which principle>)When the principles file does not cover a specific question, apply these fallbacks in order:
Every auto-answered question must be logged so the user can audit later:
[autopilot] Q: Should we use compute-controlled or fixed-iteration comparison?
→ A: Fixed iteration (based on: Thinking > prefers simpler experimental designs)
User says "autopilot off" or "stop autopilot". Resume normal interactive mode.
Autopilot is not a license to skip questions entirely. It is a license to answer them on the user's behalf. The question must still be formulated; the answer just comes from the personality profile instead of waiting for input.
If autopilot makes a wrong prediction and the user corrects it, update ~/.claude/principles.md with the correction. This is a learning signal.
npx claudepluginhub zhengxuyu/zforge --plugin zforgeGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.