audit
Use when someone asks for an AIOS audit, asks to score their setup against the Four Cs, or says "is my AIOS working" / "audit my setup" / "find gaps in my…
Use weekly to find and ship one new automation. Walks the 3Ms interview — Mindset (find the candidate) → Method (scope one) → Machine (build it). Trigger on "let's level up", "what should I automate next", "find me leverage this week", or as a Friday ritual. One run = one
$ npx -y skills add alirezarezvani/gaios --skill level-up --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/level-upContext preview
The summary Claude sees to decide when to auto-load this skill.
Use weekly to find and ship one new automation. Walks the 3Ms interview — Mindset (find the candidate) → Method (scope one) → Machine (build it). Trigger on "let's level up", "what should I automate next", "find me leverage this week", or as a Friday ritual. One run = one
name: level-up description: Use weekly to find and ship one new automation. Walks the 3Ms interview — Mindset (find the candidate) → Method (scope one) → Machine (build it). Trigger on "let's level up", "what should I automate next", "find me leverage this week", or as a Friday ritual. One run = one shipped artifact.
> *Inspired by Nate Herk's "The Three Ms of AI"™ framework ("The Three Ms of AI" is his trademark).*
Walks the user through the 3Ms each week to surface and ship one new automation. **One interview = one artifact.** It also installs the 3Ms framework into the user's head over time — after 4-6 runs, the user starts spotting opportunities mid-week without prompting because the questions have become internal defaults.
This is the brain-rewire mechanism. The kit doesn't need cron jobs to anchor behavior; it needs `/level-up` running every Friday.
Surface 1-3 candidates ranked by leverage. Ask these in order, conversationally:
1. *"Walk me through your week. What did you do 3+ times?"* (frequency) 2. *"Anything that felt manual, boring, or copy-paste?"* (drudgery) 3. *"Anything where you thought 'a smart intern could handle this'?"* (delegation) 4. *"If 500 new clients showed up tomorrow, what would break first?"* (constraint) 5. *"What would give you 500 more clients tomorrow?"* (growth lever)
Quote relevant Mindset principles when they fit:
**Output of Phase 1:** numbered list of 1-3 candidate opportunities, one-line "why this is leverage" per candidate. Ask: *"Pick one to scope."*
User picks one candidate. Walk the 5-step Method pipeline:
**Step 1 — Find the constraint.** Which bottleneck does this solve, or which growth lever does it open? Tie back to Phase 1 answers.
**Step 2 — EAD: Eliminate / Automate / Delegate.**
**Step 3 — Map the process.** Five elements:
If the user can't articulate any of the five: *"If you can't explain it to a person, you can't explain it to an AI. Sketch it on paper first, then come back."* Skill stops.
**Step 4 — Pick the autonomy level.**
| Level | Name | What happens | |---|---|---| | L0 | Manual | No AI | | L1 | Suggested | AI suggests, human decides every step | | L2 | Drafted | AI drafts, human reviews and edits | | L3 | Supervised | AI runs, human validates periodically | | L4 | Autonomous | AI handles end-to-end |
**Default = lowest level that solves the problem.** Push back on L4 unless the user has explicitly run lower levels first. *"Workflows beat agents. If a decision doesn't HAVE to be made by AI, don't let AI make it."*
**Step 5 — Tie to a KPI.** Which of the Three Buckets does this move?
Plus a specific metric (response time, error rate, conversion rate, time-to-completion). **If the user can't name a bucket and a metric, skill stops.** *"If your automation doesn't move a number, why are you building it?"*
**Output of Phase 2:** scoped automation spec written to `decisions/log.md` as a dated entry with all five answers + autonomy level + KPI. Durable record of what was decided and why.
Ask: *"How do you want to ship this?"* Options ordered by Boring-is-Beautiful default:
1. **Prompt-only** — saved prompt template the user runs by hand. Zero infrastructure. Highest manual involvement. 2. **Deterministic skill** — SKILL.md that runs a script (no AI step). Best for transformations with clear rules. 3. **AI-assisted skill** — SKILL.md with one AI call inside. Drafts, classifies, summarizes. 4. **Sub-agent** — multi-step agent. Last resort. Only if the work genuinely needs reasoning + tool use.
**Default selected = highest non-AI option that solves the problem.** User has to explicitly choose more autonomy.
Once chosen, route to the appropriate scaffolder:
Clone it, run /setup, and it becomes yours in Claude Code or Codex — a second brain + Chief of Staff that holds your context, structures your work, drafts in your voice, and runs reliable workflows.
Use when someone asks for an AIOS audit, asks to score their setup against the Four Cs, or says "is my AIOS working" / "audit my setup" / "find gaps in my…
Use at the start of a working day (or when the user asks "what should I focus on today / give me my brief / daily standup"). Produces a one-screen daily brief…
Use when the user faces a real decision with stakes and wants it framed cleanly — options, ranked criteria, a recommendation, the falsifier, and reversibility…
Template skill for a leadership-transition / executive cockpit — when someone steps into or covers a leadership role and needs to not drop anything. Produces a…
Use to run an autoresearch-style experiment loop — improve a measurable artifact by trying changes, measuring against one objective metric, keeping if better…
Use when the user brings an external source worth keeping — a URL, a paper, a tweet/thread, a blog post, a docs page — and wants it pulled into the second…