ソース情報
- リポジトリ
- jmagly/aiwg
- ソースの最終更新活動
- 2026年5月11日 04:38
- 検出された SKILL.md の言語
- 英語
- スター
- 178
- フォーク
- 26
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/jmagly/aiwg --skill deploy-genコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| namespace | aiwg |
| name | deploy-gen |
| platforms | ["all"] |
| description | Generate deployment configurations (Docker, Kubernetes) for the current project |
Skill access pattern (post-kernel-pivot, 2026.5+)
Skill names referenced in this document are AIWG skills, not slash commands. Most are not kernel-listed and cannot be invoked as
/skill-nameby the platform. Reach them via:aiwg discover "<capability>" aiwg show skill <name>Only kernel-listed skills (
aiwg-doctor,aiwg-refresh,aiwg-status,aiwg-help,use,steward) are directly invokable as slash commands. See skill-discovery rule.
Generate production-ready deployment configurations based on project analysis.
REF-001: BP-8 - Containerized Deployment
"Production-grade agentic workflows require containerized deployment with proper isolation, resource management, and orchestration."
/deploy-gen docker [options]
/deploy-gen k8s [options]
/deploy-gen compose [options]
| Argument | Required | Description |
|---|---|---|
| type | Yes | Deployment type: docker, k8s, compose |
| Option | Default | Description |
|---|---|---|
| --output | ./deploy/ | Output directory for generated files |
| --app-name | (from package.json) | Application name |
| --port | 3000 | Application port |
| --multi-stage | true | Use multi-stage Dockerfile |
| --health-check | true | Include health check endpoints |
Detect project characteristics:
Analyzing project...
- Runtime: [node/python/go/java]
- Package manager: [npm/yarn/pip/go mod]
- Entry point: [detected or ask]
- Dependencies: [count]
- Build required: [yes/no]
Choose appropriate templates based on analysis:
| Runtime | Template |
|---|---|
| Node.js | templates/deploy/docker/node.Dockerfile |
| Python | templates/deploy/docker/python.Dockerfile |
| Go | templates/deploy/docker/go.Dockerfile |
Generate deployment files with project-specific values.
deploy/
├── Dockerfile # Multi-stage build
├── .dockerignore # Exclude dev files
└── docker-build.sh # Build helper script
deploy/k8s/
├── deployment.yaml # Pod specification
├── service.yaml # Service exposure
├── configmap.yaml # Environment configuration
├── hpa.yaml # Horizontal Pod Autoscaler
└── kustomization.yaml # Kustomize base
deploy/
├── docker-compose.yml # Service definition
├── docker-compose.dev.yml # Development overrides
└── .env.example # Environment template
# Generate Dockerfile for Node.js project
/deploy-gen docker
# Generate full Kubernetes manifests
/deploy-gen k8s --app-name my-api --port 8080
# Generate Docker Compose for local development
/deploy-gen compose --output ./
# Generate all deployment types
/deploy-gen docker && /deploy-gen k8s && /deploy-gen compose
Templates use these variables:
| Variable | Source |
|---|---|
{{APP_NAME}} | --app-name or package.json |
{{PORT}} | --port option |
{{NODE_VERSION}} | .nvmrc or latest LTS |
{{PYTHON_VERSION}} | .python-version or 3.11 |
{{ENTRY_POINT}} | Detected from project |
aiwg deploy-gen <type> [options]
project-health-check - Analyze project before deploymentsecurity-audit - Security review before productionflow-deploy-to-production - Full deployment workflowFrom Unified Plan:
| Metric | Target |
|---|---|
| Zero to containerized | <2 minutes |
| Generated configs | Production-ready |
| Security baseline | Non-root, minimal image |
Generate deployment for: $ARGUMENTS