workflow-skills
v0.1.0Personal collection of agent skills for day-to-day programming workflows.
By massickLicense: MIT0 GitHub starsUpdated 2 hours ago
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 5 skill or MCP entries
- Source updated
- Sep 25, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install workflow-skills for Codex and Claude Code
codex plugin marketplace add M4ss1ck/workflow-skills
codex plugin marketplace upgrade workflow-skills
codex plugin add workflow-skills@workflow-skillsPaste and run these commands in a terminal with Codex. They add and refresh the workflow-skills catalog, then install this plugin.
Compatibility: the page URL and API slug “workflow-skills” remain stable.
- Codex:
workflow-skills@agent-plugin-marketplace→workflow-skills@workflow-skills
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/M4ss1ck/workflow-skillsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/follow-plan/SKILL.md├── skills/keep-plans-local/SKILL.md├── skills/opencode-subagent/SKILL.md├── skills/propose-commit-message/SKILL.md└── skills/report-changes/SKILL.md
Included Skills5
Enforce exact execution of a provided ordered plan, checklist, runbook, or implementation document without autonomous deviation. Use when the user asks to execute an already-decided plan and fidelity matters. Do not use merely because a broad specification or goal exists.
Keep planning artifacts as disposable local-only guidance and out of git. Use when writing or saving a plan, spec, design doc, or working notes; when another skill (such as brainstorming or writing-plans) would create or commit such a document; or when staging, committing, pushing, or opening a PR.
Delegate bounded, mechanically verifiable implementation work to a cheap OpenCode worker and verify the result yourself. Use when the user asks to delegate to OpenCode ("delegate this to opencode", "have opencode implement this", "/opencode-subagent"), and — when delegation_policy=auto — when you are about to spend a long read/edit/test loop on work whose design is already settled. Also use before creating or messaging a native subagent (Agent, SendMessage, spawn_agent, followup_task), and whenever an opencode-subagent routing hook denies one. This runs a paid external CLI: respect the configured delegation policy.
Propose a Conventional Commits message for the current work, without committing. Use when work on a task is done, or when asked to draft, propose, suggest, or write a commit message. Invoke proactively as soon as a coding task is complete, even if not explicitly requested. Pairs with report-changes at the end of a task.
Generate a concise report of the code changes made in the current session — what changed and why. Use this skill when asked to report or summarize changes, recap what was done, or write notes for a PR, commit message, or handoff, even when the request does not use the word "report" (for example, when wrapping up a task or handing work off).
Plugin manifests2
{
"name": "workflow-skills",
"version": "0.1.0",
"description": "Personal collection of agent skills for day-to-day programming workflows.",
"author": {
"name": "massick",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"skills",
"workflow",
"codex",
"agents"
],
"skills": "./skills/",
"hooks": "./hooks/codex-hooks.json",
"interface": {
"displayName": "Workflow Skills",
"shortDescription": "Personal workflow skills for coding agents.",
"longDescription": "Reusable skills for reporting changes, keeping plans local, and proposing commit messages across agent coding workflows.",
"developerName": "massick",
"category": "Productivity",
"capabilities": [
"Write"
],
"defaultPrompt": [
"Report the changes from this session.",
"Propose a commit message.",
"Keep this implementation plan local."
],
"brandColor": "#3B82F6"
}
}{
"name": "workflow-skills",
"description": "Personal collection of agent skills for day-to-day programming workflows.",
"version": "0.1.0",
"author": {
"name": "massick",
"email": "[email protected]"
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[workflow-skills on Agent Plugins Marketplace](https://pluginsmp.com/plugins/workflow-skills)