원클릭으로
intermediate-skill
Demonstrates helper script integration with sequential execution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Demonstrates helper script integration with sequential execution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Persistent memory system with .memory.md, compaction, and cross-project sync
Analyzes sessions using ACE framework to generate prompt improvement suggestions focused on durable patterns.
Database technology selection and architecture - choose between SQL vs NoSQL, PostgreSQL vs MySQL vs MongoDB, scaling strategies, migration planning. Use for database DECISIONS. For PostgreSQL implementation use postgresql skill.
Analyze feature flows for completeness, preconditions, and branch coverage using reusable flow-analyzer tools.
Automated post-phase validation workflow for GSD phases with deterministic gates and HITL controls.
Full workflow orchestration with config-driven routing and phase-based execution
| name | intermediate-skill |
| description | Demonstrates helper script integration with sequential execution |
I demonstrate how OpenCode skills integrate with helper scripts for sequential task execution.
Skills + Scripts = Workflows. While the SKILL.md file provides instructions to the AI assistant, helper scripts do the actual work with structured execution, console output, and step-by-step processing.
This skill contains two files:
skills/intermediate/
├── SKILL.md ← You are here! (instructions)
└── helper.sh ← Helper script (execution)
The pattern:
Execute the helper script to see sequential execution with console output:
bash src/skill/opencode-mastery/examples/skills/intermediate/helper.sh
The script will:
Skills can reference external scripts for execution:
## How to Use Me
Execute the helper script:
```bash
bash path/to/helper.sh
```
The AI assistant reads this instruction and executes the script via the Bash tool.
### 2. Sequential Execution Pattern
The helper demonstrates ordered execution:
```bash
Step 1: Initializing...
Step 2: Processing data...
Step 3: Generating output...
Step 4: Validating results...
Step 5: Finalizing...
Each step completes before the next begins - sequential execution.
Rich console feedback for visibility:
Reusable pattern for multi-step workflows:
The helper.sh follows this structure:
#!/bin/bash
# Header
echo "====================================="
echo " Sequential Execution Example"
echo "====================================="
# Steps (sequential execution)
for step in {1..5}; do
echo "Step $step: Executing task..."
# ... do work ...
echo " ✓ Completed"
done
# Footer
echo "====================================="
echo " Execution Complete"
echo "====================================="
Use helper scripts when you need:
After studying this intermediate example, you should understand:
Difficulty: ⭐⭐ (Beginner to intermediate) Complexity: Low (2 files: SKILL.md + helper.sh) Learning Curve: Gentle - adds helper script concept Use Case: Multi-step tasks, console output, sequential processing