Action Runner logo

Action Runner

CommunityPopular
mohitagw15856
action-runner

Turn a skill's recommendations into real, executed actions — open the tickets, file the issues, post the updates — safely: dry-run preview, risk-classified, approval-gated, then recorded back to the brain. Use when asked to act on a plan, file tickets from a checklist, create issues from a PRD, execute the recommended next steps, or wire a skill's output into GitHub/Linear/Slack. Produces a dry-run actions plan with per-action risk, executes only after approval via the connected action MCP, and logs what was done. Nothing acts silently.

Overview

Publishermohitagw15856
Repositorypm-claude-skills
Skill nameaction-runner
Stars
1.4K
Forks
240
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by mohitagw15856 on GitHub. Read the source before you install it.

Installation

Install the Action Runner AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/mohitagw15856/pm-claude-skills.git /tmp/pm-claude-skills
mkdir -p .claude/skills
cp -r /tmp/pm-claude-skills/exports/openclaw/action-runner .claude/skills/action-runner
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Action Runner in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Action Runner on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Action Runner is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Action Runner Skill

The library is great at recommending work. This skill executes it — the action layer of the Professional Brain (Phase 2). A skill says "open a ticket per checklist item"; this turns that into real GitHub/Linear/Slack actions, safely: previewed, risk-rated, approved, then recorded. The cardinal rule: nothing acts silently.

What This Skill Produces

  1. A dry-run actions plan — every proposed action with its target, operation, and risk.
  2. After approval, the executed actions (via the connected action MCP) — outbound/destructive ones gated individually.
  3. A record back to the brain of what was actually done, with provenance.

Required Inputs

Ask for (if not already provided):

  • The recommendations to act on (a launch checklist, PRD requirements, postmortem follow-ups…).
  • The connected action MCP and targets — which GitHub repo / Linear project / Slack channel. Scope is limited to what the user names; never act outside it.
  • Approval posture — what may run with a single OK vs. what needs per-action confirmation.

How it works

recommend → build an actions plan (JSON) → preview + risk-gate → approve → execute → record
  1. Build the plan — express each action as JSON: {"target","op","args","why","risk?"}.
  2. Preview + gate — run the helper; it prints a dry-run, classifies risk (🟢 low / 🟡 medium / 🔴 high), and refuses to proceed while any 🔴 outbound/destructive action is unapproved:
    bash
    echo '<plan json>' | python3 scripts/action_preview.py -
    # after the user approves the risky ones:
    echo '<plan json>' | python3 scripts/action_preview.py - --allow-high
  3. Approve — low/medium can run on a single confirmation; every 🔴 (post, send, delete, deploy, merge, charge…) needs explicit per-action approval. Default is do nothing until told.
  4. Execute — only approved actions, only via the connected action MCP (e.g. Composio/GitHub create_issue). One target at a time; stop and report on the first failure.
  5. Record — append what was actually done to the brain so the loop closes:
    bash
    python3 ../professional-brain/scripts/brain_write.py ./brain decisions "Filed launch tickets" \
      --tag external --body "Opened 7 issues in acme/app from the launch checklist" --commit

Supported action targets

Any action MCP can be wired in; these are the common targets, with example operations and the default risk the gate applies. Reads are 🟢; anything outbound, destructive, or that spends is 🔴.

TargetExample operationsDefault risk
GitHubcreate_issue, comment, open_pr · (merge_pr, close 🔴)🟡 (🔴 for merge/close)
Linear / Jiracreate_issue, update_status, comment🟡
Slackpost_message, reply_in_thread (outbound → always confirm)🔴
Notionappend_block, create_page, update_property🟡 (🔴 if it overwrites)
Email / Gmailsend_email (outbound)🔴
Calendarcreate_event, invite (outbound)🟡 (🔴 if it emails invitees)

Pick the narrowest target and op that does the job, scope to exactly what the user named, and let the risk gate decide what needs explicit approval. Outbound messages (Slack/email) are 🔴 by default — the model never posts on someone's behalf without a per-action yes.

Safety rules (non-negotiable)

  • Dry-run by default. The plan is shown before anything runs.
  • Approval-gated. No execution without a yes; 🔴 actions are confirmed one by one.
  • Scope-limited. Only the repos/channels/projects the user named.
  • Logged. Every executed action is recorded to the brain with an [external] tag and a link.
  • No silent retries, no bulk outbound. If a step fails, stop and surface it.

The contract for other skills

An action-aware skill adds a short "Proposes Actions" section: after producing its artifact, it lists the actions it could take (target · op · why), then hands off to action-runner — which previews, gates, executes, and records. The skill never executes directly.

Output Format

  1. Proposed actions — a table: # · target · operation · why · risk.
  2. Gate result — the preview output; the 🔴 actions needing approval called out explicitly.
  3. Executed (after approval) — what ran, with links/IDs returned by the MCP.
  4. Recorded to the brain — the line(s) appended, with provenance.

Quality Checks

  • A dry-run plan is shown before anything executes
  • Every action has a risk level; 🔴 actions are individually approved
  • Execution stays within the named scope and uses only the connected MCP
  • Each executed action is recorded back to the brain with an [external] tag
  • On failure, it stops and reports rather than retrying blindly

Anti-Patterns

  • Executing anything without showing the dry-run plan first
  • Treating an outbound/destructive action (post, email, delete, deploy) as low-risk
  • Acting outside the scope the user named, or fanning out to many targets
  • "Helpfully" doing more than was approved
  • Forgetting to record what was done — the brain must reflect reality

Frequently asked questions

What does the Action Runner AI skill do?

Turn a skill's recommendations into real, executed actions — open the tickets, file the issues, post the updates — safely: dry-run preview, risk-classified, approval-gated, then recorded back to the brain. Use when asked to act on a plan, file tickets from a checklist, create issues from a PRD, execute the recommended next steps, or wire a skill's output into GitHub/Linear/Slack. Produces a dry-run actions plan with per-action risk, executes only after approval via the connected action MCP, and logs what was done. Nothing acts silently.

Why use Action Runner on TypingMind?

Because you install it once and use it with any model. Action Runner is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Action Runner in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/mohitagw15856/pm-claude-skills/tree/main/exports/openclaw/action-runner. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Action Runner?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Action Runner?

As many as you like. As long as a model supports skills, you can use Action Runner with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Action Runner AI skill free?

Yes. It is published on GitHub by mohitagw15856 under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇