← ClaudeAtlas

setuplisted

Initial workspace setup — configures modules and verification profiles based on user selections from the admin panel
IgnatRozhkoTR/governed-workflow · ★ 8 · AI & Automation · score 78
Install: claude install-skill IgnatRozhkoTR/governed-workflow
# Setup — Workspace Configuration Assistant This skill is invoked automatically by the admin panel's setup wizard. It receives a configuration payload describing which modules to install and which verification profiles to configure. ## Input The setup configuration is passed as the initial prompt. It contains: - **modules to enable**: List of module IDs to enable (e.g., `["telegram"]`) - **modules to disable**: List of module IDs to disable (e.g., `["other_module"]`) - **languages**: List of language profile configurations to set up ## Execution Flow ### Phase 1: Module Configuration For each module in the `modules to enable` list: 1. Read the module's skill file at `<repo>/claude/modules/<module_id>/SKILL.md` 2. Read the skill thoroughly — understand its `enable` section before doing anything 3. Follow the `enable` instructions exactly as written in the skill (the `enable` command handles install if needed, then activates the integration) 4. If the skill defines a `status` command, run it after enabling to verify success 5. If enabling fails: - Capture the full error output - Report it clearly: what failed, what the error was, what the user can do - Continue to the next module — do not abort the entire setup For each module in the `modules to disable` list: 1. Read the module's skill file at `<repo>/claude/modules/<module_id>/SKILL.md` 2. Read the skill thoroughly — understand its `disable` section before doing anything 3. Follow the `disable` instructions