From partme-ai-full-stack-skills
Creates SOPs by combining atomic Agent Skills into multi-step workflows with decision logic and human-in-the-loop checkpoints. Supports skill search, SOP drafting, and dependency validation for business automation.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
Use this skill whenever the user wants to:
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Use this skill whenever the user wants to:
Guide for creating Standard Operating Procedures (SOPs) and composite workflows by combining atomic Agent Skills. This skill transforms loose collections of tools into reliable, repeatable business processes.
| Name | Type | Required | Description |
|---|---|---|---|
| action | string | true | The action to perform. One of search_skills, draft_sop, validate_sop. |
| context | string | false | Context for the action (e.g. business goal for drafting, search query for searching). |
Finds available atomic skills to include in your SOP.
skill-sop-creator(action="search_skills", context="pdf processing")pdf-split, pdf-merge, ocr-extract) that can be steps in your SOP.Generates a draft SKILL.md for a composite skill (SOP) based on a business goal.
skill-sop-creator(action="draft_sop", context="Daily Competitor Analysis Report")Checks if a proposed SOP structure is valid and if referenced skills exist.
skill-sop-creator(action="validate_sop", context="<sop_content>")pencil-draw-rect not draw-entire-ui).# Daily Competitor Analysis SOP
## 1. Information Gathering
- **Skill**: `web-search`
- **Action**: Search for "competitor name" + "news"
- **Output**: List of URLs
## 2. Content Extraction
- **Skill**: `web-scraper`
- **Input**: URLs from Step 1
- **Output**: Raw text
## 3. Analysis
- **Skill**: `llm-summarize`
- **Input**: Raw text
- **Prompt**: "Identify key pricing changes and feature launches."
## 4. Reporting
- **Skill**: `pdf-generator`
- **Input**: Summary
- **Output**: PDF Report