소스 정보
- 저장소
- mazumba/opencode-dockerized
- 최근 소스 활동
- 2026년 6월 17일 08:26
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/mazumba/opencode-dockerized --skill 1명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| description | Scaffold a new skill folder with SKILL.md, GOTCHAS.md, HISTORY.md, and starter directories |
| subtask | true |
| agent | build |
Create a new OpenCode skill. Skill name: $1. Description hint: $2.
Create the following structure under .opencode/skills/$1/:
.opencode/skills/$1/SKILL.md---
name: $1
description: <concise trigger-first description, ≤150 chars, starts with "Use when...">
---
# Skill: $1
## Overview
<2–3 sentences. What this domain IS. No step-by-step. Facts only.>
## File & Directory Map
| Path | Purpose |
|---|---|
| `SKILL.md` | This reference file |
| `GOTCHAS.md` | Known failure points and fixes |
| `HISTORY.md` | Append-only change log |
| `assets/` | Templates, static files, and output scaffolds (if any) |
| `scripts/` | Helper scripts and libraries the agent can run or compose (if any) |
## Key Facts
<Dense reference material. Patterns, constraints, naming rules, API shapes, config values.
Write what an agent needs to KNOW, not what it needs to DO.
Tables, code blocks, and bullet lists — no numbered instructions.>
## Configuration
<!-- Remove this section if the skill needs no per-user setup. -->
<!-- If the skill requires user-specific values (e.g. a Slack channel, an API endpoint),
store them in config.json in this folder. On first run, check whether config.json
exists; if not, ask the user for the required values and write the file.
Example shape:
{
"channel": "#deployments",
"environment": "production"
}
-->
## Memory
<!-- Remove this section if the skill is stateless. -->
<!-- For skills that benefit from remembering past runs (standups, recaps, deploy logs),
store data in an append-only file in this folder (e.g. history.log or runs.json).
Read the last N entries at the start of each run so context carries across sessions. -->
## Cross-References
- Related skill: `other-skill-name` — brief reason
.opencode/skills/$1/GOTCHAS.md# Gotchas
Every real mistake, wrong assumption, and edge case discovered while working in this domain.
Add an entry whenever something breaks unexpectedly. Also log it in HISTORY.md.
---
<!-- Add entries below as they are discovered. Format:
### <Short title>
**Symptom:** What you observe / what breaks
**Root cause:** Why it happens
**Fix:** What to do instead
-->
.opencode/skills/$1/HISTORY.md# History
Append a dated entry each time you modify something in this skill's domain.
Include: what changed, why, and any gotcha encountered (also add to GOTCHAS.md).
---
## <YYYY-MM-DD> — Skill created
Scaffolded via `/skill $1`. No domain changes yet.
.opencode/skills/$1/assets/.gitkeepEmpty file. The assets/ directory is for templates, output scaffolds, and static files the skill uses or produces.
.opencode/skills/$1/scripts/.gitkeepEmpty file. The scripts/ directory is for helper scripts and libraries the agent can run or compose during skill execution.
scripts/, templates and output files to assets/. Reference them in the File & Directory Map.config.json on first run and prompt the user for missing values.Use today's actual date (not a placeholder) in HISTORY.md. After creating the files and directories, confirm the paths and the description you chose.