expo-launchpad-status

expo-launchpad-status is a skill for Claude Code from SummerRiversound/expo-launchpad. It costs 27 tokens per session (900 once invoked), scanned A, original, MIT.

A read-only status reporter for the expo-launchpad pipeline, a workflow that moves a project through defined phases and roles.

In plain words
What is it for?
Use it to inspect the current phase, round, next assigned role, pause reason, and pipeline history.
Why use it?
It shows where the workflow is, what happens next, and why it may be paused without changing any files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the expo-launchpad plugin — 9 skills shipped together

Good fit Use it to inspect the current phase, round, next assigned role, pause reason, and pipeline history.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/summerriversound/expo-launchpad/expo-launchpad-status
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add SummerRiversound/expo-launchpad --skill expo-launchpad-status
Clone the repo
git clone --depth 1 https://github.com/SummerRiversound/expo-launchpad

Made for: Claude Code.

Or install expo-launchpad, the plugin that ships this one along with the rest of its 9 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for expo-launchpad-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/summerriversound/expo-launchpad/expo-launchpad-status/github.svg)](https://agentmods.dev/skills/summerriversound/expo-launchpad/expo-launchpad-status)
Your own site
<a href="https://agentmods.dev/skills/summerriversound/expo-launchpad/expo-launchpad-status"><img src="https://agentmods.dev/badge/skills/summerriversound/expo-launchpad/expo-launchpad-status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for expo-launchpad-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/summerriversound/expo-launchpad/expo-launchpad-status"><img src="https://agentmods.dev/badge/skills/summerriversound/expo-launchpad/expo-launchpad-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 900 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.00900
Opus 5 $0.00014 $0.00450
Sonnet 5 $0.00005 $0.00180
Haiku 4.5 $0.00003 $0.00090

Measured 11d ago against content hash debcf8b1d623, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

expo-launchpad-status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/expo-launchpad-status/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

expo-launchpad-status

Read-only status reporter for the expo-launchpad pipeline. Reads docs/harness/state.md and docs/harness/pipeline-log.md and prints a summary of the current pipeline state.

All file schemas are defined in docs/harness-protocol.md — refer to §2 (state.md schema) and §6 (log table schemas) as the single source of truth. Do not redefine schemas here.

This skill is strictly read-only. It must never modify state.md, pipeline-log.md, or any other harness file, and takes no action beyond printing a report.


Input

docs/harness/ lives at the workspace root — the directory the pipeline was invoked from — for the entire pipeline, never inside the generated <app_slug>/ project. Locate docs/harness/state.md relative to the current working directory (the invocation dir), the same convention every other phase skill uses.

If docs/harness/state.md does not exist, print:

No expo-launchpad run in this directory.

Then exit without error — do not create any file, do not treat this as a failure.


Procedure

1. Read state.md

Read docs/harness/state.md and extract the following fields per the schema in docs/harness-protocol.md §2:

  • statusrunning | paused | completed
  • current_phase — the currently executing (or last-active) phase
  • current_round — integer round counter
  • next_role — skill role that runs next
  • pause_reason"" | rate_limit | manual_action | error
  • resume_attempts — integer
  • checkpoint"" | 6a | 6b | 6c
  • updated_at — ISO-8601 timestamp of last write

2. Read pipeline-log.md (if present)

If docs/harness/pipeline-log.md exists, read the last 5 rows (e.g. tail -n 5 docs/harness/pipeline-log.md) to give a recent event summary. If the file is absent or empty, skip this section of the report.

3. Print status report

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 expo-launchpad pipeline status
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  Status        : <status>
  Current phase : <current_phase>
  Round         : <current_round>
  Next role     : <next_role>
  Checkpoint    : <checkpoint, or "—" if blank>
  Resume attempts: <resume_attempts>
  Last updated  : <updated_at>
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 109 lines · 27 tokens per session scan A debcf8b1d623

Subscribe to this mod's changes

expo-launchpad-status is a skill published in the GitHub repository SummerRiversound/expo-launchpad (2 stars, last pushed 1mo ago), licensed MIT. It adds 27 tokens to every session and 900 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

prd-builder

Use to construct a complete Product Requirements Document for a mobile app from a vision file. Used primarily by the CPO agent. Triggers on requests to "write the PRD", "spec out the product", or as part of /app-plan.

vmobifystudio/app-dev-team · 53 tokens

schedule-edit

Edit a workhub schedule note (projects/ /schedules/.md) from a natural-language instruction — move or resize the bars, arrows, milestones and notes in ## Items, and adjust ## Non-working days. Use when asked to shift a phase, rebalance a plan, add or remove non-working days, or when the workhub app launches a schedule…

atman-33/workhub · 81 tokens

shared-space

Record and use a team knowledge base that lives outside the vault - a network drive, Google Drive, OneDrive or SharePoint folder. Survey mode reads the place and writes down how it is organised into projects/ /shared/; place mode says where a vault note belongs in it. Use when the user wants to register a team share…

atman-33/workhub · 90 tokens

vault-setup

Set up a machine to work with a workhub vault - check/install required software (git, Node.js, Claude Code, OpenCode), initialize the vault if needed, wire up Claude plugins, and run the OpenCode sync scripts. Use when onboarding a new machine, after a fresh vault-init, or when the harness feels half-configured.

atman-33/workhub · 73 tokens

create-work-log

A tool that turns Git activity from configured repositories into a daily or weekly work log in Markdown. Git is a system that records changes to code, including who made them and when.

atman-33/workhub · 68 tokens

manage-backlog

Add, refine, split, or reorder PBIs in the file-based product backlog in the team-shared folder. Use when the user wants to create backlog items, write user stories or acceptance criteria, estimate points, split oversized items, or tidy the product backlog.

atman-33/workhub · 57 tokens