scaffold-layer
Create minimum viable agentic layer structure for a project. Use when adding agentic capabilities to a new project.
What this skill does
# Scaffold Layer
Create a minimum viable agentic layer structure for a project.
## Arguments
- `$ARGUMENTS`: Project name or target directory
## Instructions
You are scaffolding a minimum viable agentic layer for a project.
### Step 1: Create Directory Structure
```bash
mkdir -p specs
mkdir -p .claude/commands
mkdir -p adws/adw_modules
mkdir -p agents
```
### Step 2: Create Chore Template
Create `.claude/commands/chore.md`:
```markdown
# Chore Planning
Create a detailed implementation plan for this chore task.
## Task Description
$ARGUMENTS
## Instructions
1. Analyze the task requirements
2. Identify files to modify
3. Create step-by-step implementation plan
4. Define validation criteria
## Output
Create a spec file at: `specs/chore-{timestamp}-{name}.md`
Include:
- Task overview
- Files to modify
- Implementation steps
- Validation checklist
```
### Step 3: Create Implement Template
Create `.claude/commands/implement.md`:
```markdown
# Implementation
Implement the plan provided.
## Plan File
$ARGUMENTS
## Instructions
1. Read the plan file completely
2. Implement each step in order
3. Validate against criteria
4. Report changes
## Output
Report with:
- Changes made (git diff --stat)
- Validation results
- Any issues encountered
```
### Step 4: Create Agent Module Stub
Create `adws/adw_modules/__init__.py`:
```python
"""
ADW Modules - Core agent execution utilities.
To implement:
- agent.py: Claude Code subprocess execution
- data_types.py: Pydantic request/response models
"""
```
### Step 5: Create README
Create `adws/README.md`:
```markdown
# AI Developer Workflows
This directory contains the agentic layer for this project.
## Structure
- `adw_modules/`: Core execution modules
- `adw_*.py`: Workflow scripts
## Getting Started
1. Implement `adw_modules/agent.py` with Claude Code execution
2. Create gateway scripts (e.g., `adw_prompt.py`)
3. Build composed workflows (e.g., `adw_chore_implement.py`)
## Usage
Run workflows from project root:
```bash
python adws/adw_prompt.py "Your prompt here"
```
### Step 6: Report Structure
## Output
Report created structure:
```markdown
## Agentic Layer Scaffolded
**Project:** {name}
**Date:** {today}
### Created Directories
- specs/
- .claude/commands/
- adws/adw_modules/
- agents/
### Created Files
- .claude/commands/chore.md
- .claude/commands/implement.md
- adws/adw_modules/__init__.py
- adws/README.md
### Next Steps
1. Implement `adws/adw_modules/agent.py`:
- Claude Code subprocess execution
- Request/response data models
- Output file handling
2. Create gateway script `adws/adw_prompt.py`:
- CLI interface with click
- Unique ID generation
- Rich console output
3. Create composed workflow `adws/adw_chore_implement.py`:
- Execute /chore to generate plan
- Execute /implement with plan
### Time to Production
Estimated 5-8 hours to complete MVP
```
## Notes
- This creates the bare minimum structure
- Next step is implementing agent.py execution module
- See @minimum-viable-agentic skill for full implementation guide
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.