用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill daemon-init命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
基于 SOC 职业分类
正在显示 SKILL.md
| namespace | aiwg |
| name | daemon-init |
| platforms | ["all"] |
| description | Initialize AIWG daemon mode configuration from a named profile for persistent background sessions |
You initialize AIWG daemon mode configuration from a named profile. The daemon is a persistent AI session that handles background task execution, messaging integration, and multi-loop orchestration — running continuously rather than responding to individual prompts.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
--force| Pattern | Example | Action |
|---|---|---|
| Default init | "initialize daemon" | Run aiwg daemon-init |
| Named profile | "init daemon as orchestrator" | Run aiwg daemon-init orchestrator |
| Force reinit | "reinitialize daemon config" | Run aiwg daemon-init --force |
| Worker mode | "set up a worker daemon" | Run aiwg daemon-init worker |
| Monitor mode | "run daemon in monitoring mode" | Run aiwg daemon-init monitor |
When triggered:
Extract intent:
manager if not.--force needed (user mentioned reinitializing or overwriting)?Select the appropriate profile:
| Profile | Authority | Use Case |
|---|---|---|
manager (default) | Balanced — orchestrate and execute | General-purpose persistent agent |
orchestrator | High — coordinate other agents | Driving multi-agent workflows |
worker | Low — execute, minimal decisions | Background task execution |
monitor | Read-only — observe and alert | Ops monitoring, health checks |
Run the command:
# Default profile (manager)
aiwg daemon-init
# Named profile
aiwg daemon-init orchestrator
aiwg daemon-init worker
aiwg daemon-init monitor
# Overwrite existing config
aiwg daemon-init --force
aiwg daemon-init orchestrator --force
Know where config is written: .aiwg/daemon/config.yaml in the current project. This file controls:
Report the result — Confirm which profile was initialized and the config path. If daemon is already initialized, remind the user to use --force to overwrite.
User: "Set up daemon mode"
Extraction: Init request, no profile specified — use manager
Action:
aiwg daemon-init
Response: "Daemon initialized with manager profile. Config written to .aiwg/daemon/config.yaml. To start the daemon, see docs/daemon-guide.md for session launch instructions."
User: "Initialize the daemon as an orchestrator — I want it coordinating multiple sub-agents"
Extraction: Init with orchestrator profile
Action:
aiwg daemon-init orchestrator
Response: "Daemon initialized with orchestrator profile. High-authority orchestration settings applied. Config at .aiwg/daemon/config.yaml. The orchestrator profile enables aiwg mc (Mission Control) dispatch patterns."
User: "Reinitialize the daemon — the old config is stale"
Extraction: Force reinit, no profile specified — use manager with --force
Action:
aiwg daemon-init --force
Response: "Daemon config overwritten with manager profile. Previous config backed up to .aiwg/daemon/config.yaml.bak."
User: "I need a worker daemon for running background test loops in CI"
Extraction: Init with worker profile
Action:
aiwg daemon-init worker
Response: "Daemon initialized with worker profile. Minimal decision authority configured — this profile executes tasks and reports results without autonomous orchestration. Suitable for CI background loops."
If the user's intent is ambiguous:
manager (default), orchestrator, worker, monitor".aiwg/daemon/config.yaml. Should I overwrite it with --force?"