{"slug":"aden-hive-hive-slack-notifications-setup","name":"hive.slack-notifications-setup","description":"Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation.","long_description":"---\nname: hive.slack-notifications-setup\ndescription: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation.\nmetadata:\n  author: hive\n  type: default-skill\n  version: \"1.1\"\n  requires_skill: hive.browser-automation\n---\n\n# Slack Notifications Setup (Sentinel)\n\nSentinel pings the user on Slack when a colony stalls and lets them reply from\nSlack to keep it going. It needs a Slack app with two tokens:\n\n- a **Bot User OAuth Token** (`xoxb-…`) — stored under credential id `slack`, used to *send* alerts and call the Slack API.\n- an **App-Level Token** (`xapp-…`) with `connections:write` — stored under credential id `slack_app`, used by Socket Mode to *receive* the user's reply.\n\nYou do the whole thing end to end: reuse-or-create the app, read the tokens, store\nthem with the **`sentinel_setup`** tool (the same API the desktop connector uses),\ncreate/select the channel **via the Slack API**, and turn Sentinel on — without\nmaking the user paste anything.\n\n**Activate `hive.browser-automation` first** — this skill assumes you know the\nlifecycle rules (the bridge attaches to the user's own Chrome; never launch or kill\na browser), the screenshot + viewport-fraction coordinate workflow, and\n`hive-browser interact`.\n\n## Before you start — check what already exists\n\n1. Run `sentinel_setup({\"action\": \"status\"})`. If it shows **both** `slack bot` and\n   `slack app` already configured, the app and tokens are already in place — skip\n   Steps 1–4 entirely and go to **Step 5 (channel)**. Don't recreate anything.\n2. Confirm the user is signed into the right Slack workspace: run\n   `hive-browser navigate https://api.slack.com/apps --json` in the terminal. If it shows a sign-in screen,\n   ask them to log into the workspace they want alerts in. If they have several\n   workspaces, ask which one.\n3. **Reuse before create.** Scan the apps list for an app named **Hive Sentinel**.\n   If it exists, open it and skip to **Step 2** (app-level token) / **Step 3**\n   (install) — do **not** create a second app. Only create one if none exists.\n\n## Step 1 — Create the app from a JSON manifest\n\nThe manifest sets the name, bot scopes (including channel management), Socket Mode,\nand event subscriptions in one shot.\n\n1. Click **Create New App → From a manifest**, pick the workspace, click **Next**.\n2. Switch to the **JSON** tab (not YAML — the browser type tools strip newlines and\n   break YAML).\n3. Inject the manifest with `hive-browser evaluate` (run in the terminal) using CodeMirror's API — see\n   **\"Filling the manifest editor\"** below for the exact, non-doubling method. Use\n   this manifest verbatim:\n\n```json\n{\n  \"display_information\": { \"name\": \"Hive Sentinel\" },\n  \"features\": { \"bot_user\": { \"display_name\": \"Hive Sentinel\", \"always_online\": true } },\n  \"oauth_config\": {\n    \"scopes\": {\n      \"bot\": [\n        \"chat:write\",\n        \"chat:write.public\",\n        \"channels:read\",\n        \"channels:history\",\n        \"channels:manage\",\n        \"groups:read\",\n        \"groups:history\",\n        \"users:read\"\n      ]\n    }\n  },\n  \"settings\": {\n    \"event_subscriptions\": { \"bot_events\": [\"message.channels\", \"message.groups\"] },\n    \"socket_mode_enabled\": true,\n    \"org_deploy_enabled\": false,\n    \"token_rotation_enabled\": false\n  }\n}\n```\n\n`channels:manage` is included **up front** so you can create the channel by API in\nStep 5 without ever reinstalling. Valid manifest keys only: `socket_mode_enabled`\n(not `socket_mode`), and there is no `org_domains` field.\n\n4. With the editor showing a single copy and no \"can't translate\" error, click\n   **Next**, then **Create**.\n\n### Filling the manifest editor (JSON tab — do this, nothing else)\n\nSlack's manifest editor is **CodeMirror 5**, and it validates from React state, not\nthe DOM. Two traps, both avoided by the method below:\n\n- `hive-browser interact`/`insert_text` **strips newlines** (breaks the manifest) and the\n  type path tries to parse the braces. Don't type into it.\n- A `paste`/`InputEvent` that **carries the text** gets *appended on top of* the\n  current value — paste it after `setValue` and you get the manifest **twice**.\n\nSet the value once, then fire a **value-less** input event so React re-reads it.\nRun this with `hive-browser evaluate` in the terminal — because the script is\nmulti-line and quote-heavy, pass it via `--js -` (stdin) or `--js @file` rather than\ninline `--js '…'`:\n\n```js\n// JSON tab must be active first (click the tab labelled \"JSON\").\nconst cm = document.querySelector('.CodeMirror').CodeMirror;\n// Embed the manifest as a single-quoted JS string (it contains only double quotes).\nconst manifest = '{\"display_information\":{\"name\":\"Hive Sentinel\"}, ... }';\ncm.setValue(manifest);                 // setValue REPLACES — it never appends\ncm.getInputField().dispatchEvent(      // notify React WITHOUT carrying any text\n  new InputEvent('input', { bubbles: true, inputType: 'insertFromPaste' })\n);\nreturn { valueLen: cm.getValue().length };  // sanity-check: one copy, not double\n```\n\nIf `valueLen` is ~2× the manifest length, it doubled — `cm.setValue('')` then\n`cm.setValue(manifest)` once and re-dispatch. Never solve a \"Next is disabled\" by\npasting again.\n\n## Step 2 — Generate the App-Level Token (`xapp-…`)\n\nManifests can't mint app-level tokens. In the app: **Basic Information → App-Level\nTokens → Generate Token and Scopes**, name it (e.g. `socket`), add the scope\n**`connections:write`**, **Generate**, then read the `xapp-…` value.\n\n## Step 3 — Install to the workspace, get the Bot Token (`xoxb-…`)\n\n1. Open **OAuth & Permissions** and click **Install to Workspace** → **Allow**.\n2. Read the **Bot User OAuth Token** (`xoxb-…`). Read it from the input's value, not\n   off a screenshot, so you don't truncate it:\n\n```js\nArray.from(document.querySelectorAll('input')).map(i => i.value).filter(v => v.startsWith('xoxb-'));\n```\n\n## Step 4 — Store both tokens with `sentinel_setup`\n\n```\nsentinel_setup({\"action\": \"store_token\", \"provider\": \"slack\",     \"token\": \"xoxb-…\"})\nsentinel_setup({\"action\": \"store_token\", \"provider\": \"slack_app\", \"token\": \"xapp-…\"})\n```\n\nThe bot token is validated (`auth.test`) before storing and reports the workspace.\nIf it's rejected, re-read the token from the input value (you likely grabbed a\npartial string) and retry — never invent or pad a token.\n\n> Prefer not to handle the tokens yourself? Fall back to\n> `credentials(action=\"collect\", …)` with `credential_id` `slack` / `slack_app`\n> (field `access_token`) to pop a secure form. The default flow above is hands-off\n> and is what the in-app \"Set this up with the agent\" button expects.\n\n## Step 5 — Channel: do it with the Slack API, not the UI\n\nDon't click around the Slack web UI to make or find a channel — use the Slack API\nwith the bot token via `terminal_exec` + `curl`. (A browser `fetch()` to slack.com\nis **CORS-blocked** from the app tab; curl from the terminal is the reliable path.)\n\n**Reuse an existing channel** the user named — list and grab its `id`:\n\n```bash\ncurl -s -X POST 'https://slack.com/api/conversations.list' \\\n  -H 'Authorization: Bearer xoxb-…' \\\n  -H 'Content-Type: application/x-www-form-urlencoded' \\\n  -d 'types=public_channel,private_channel&limit=1000'\n```\n\n**Create a dedicated channel** (recommended default, e.g. `hive-sentinel`). The bot\njoins automatically as the creator, and the response carries the new channel `id`:\n\n```bash\ncurl -s -X POST 'https://slack.com/api/conversations.create' \\\n  -H 'Authorization: Bearer xoxb-…' \\\n  -H 'Content-Type: application/json' \\\n  -d '{\"name\":\"hive-sentinel\",\"is_private\":false}'\n```\n\nIf you **reuse** a channel the bot didn't create, add the bot so it can post and\nread replies (look up the bot user id from `auth.test` if needed):\n\n```bash\ncurl -s -X POST 'https://slack.com/api/conversations.invite' \\\n  -H 'Authorization: Bearer xoxb-…' -H 'Content-Type: application/json' \\\n  -d '{\"channel\":\"C0123ABC456\",\"users\":\"<BOT_USER_ID>\"}'\n```\n\nTake the channel `id` (`C…`) from the JSON response. `channels:manage` is already in\nthe manifest, so none of this needs a reinstall.\n\n## Step 6 — Turn Sentinel on and verify\n\n`configure`/`test` target the colony bound to your session (pass `colony_id` only to\nset up a different one):\n\n```\nsentinel_setup({\"action\": \"configure\", \"channel\": \"slack\",\n                \"target\": {\"channel\": \"C0123ABC456\"}, \"enabled\": true})\nsentinel_setup({\"action\": \"test\"})\n```\n\n`test` posts to the channel — ask the user to confirm it arrived. If it didn't, the\nusual causes are the bot isn't in the channel (re-run `conversations.invite`) or the\nchannel id is wrong. `sentinel_setup({\"action\": \"status\"})` shows stored tokens +\nthe colony's current config any time.\n\nWhen `test` succeeds you're done: tell the user Sentinel is live on `#<channel>` and\nthey can reply to its messages from Slack to keep the colony moving. (They can review\nor change any of this under **Automations → Set up Sentinel**.)\n\n## Guardrails\n\n- Activate `hive.browser-automation` and obey its lifecycle rules. Never run\n  `google-chrome`/`chromium`, `--remote-debugging-port`, or kill any browser/bridge\n  process — you drive the user's existing Chrome.\n- **Reuse, don't duplicate.** If a **Hive Sentinel** app already exists (or\n  `sentinel_setup status` shows both tokens configured), use it — never create a\n  second app.\n- Never invent, guess, or paraphrase a token. If you can't read one cleanly, re-read\n  the input value rather than fabricating.\n- The two `store_token` providers are exact: `slack` (bot, `xoxb-`) and `slack_app`\n  (app-level, `xapp-`). Swapping them breaks send vs. receive.\n- Manifest editor: **JSON tab + `cm.setValue` once + a value-less `input` event**.\n  Never type the manifest, never use the YAML tab, never re-paste to \"fix\" a\n  disabled Next button (that doubles the content).\n- If Slack shows an org/admin approval wall on install, the workspace requires admin\n  approval for apps — tell the user to request it (or use a workspace where they're\n  admin); you can't bypass it.\n","tagline":"Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can p","category":"design-creative","tags":["agent-skill"],"author":"aden-hive","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"github candidate review","sourceDetail":"aden-hive/hive","creatorName":"aden-hive","creatorUrl":"https://github.com/aden-hive","sourceUrl":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":11006,"forks":5670,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":51.69},"quality":{"score":88,"tier":"excellent","label":"Excellent","summary":"High-confidence pick with strong adoption and healthy maintenance signals.","signals":[{"label":"GitHub stars","value":"11K","tone":"positive"},{"label":"Freshness","value":"16d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"Apache-2.0","tone":"neutral"}],"warnings":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation."]},"trust":{"version":"trust-score-v5","score":65,"base_score":73,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"sandbox_only","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["65/100 Trust Score v5","73/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":100,"weight":0.13,"status":"pass","detail":"11K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":100,"weight":0.08,"status":"pass","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"11K GitHub stars"},{"status":"pass","label":"Stars/forks activity","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Large GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"11K GitHub stars","repoActivity":"11K stars, 5.7K forks","lastPushed":"16d since push","license":"Apache-2.0","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"sandbox_only"},"installReadiness":{"ready":true,"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","policy":"sandbox_only","label":"Sandbox only","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"sandbox_only","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","trust_score":65,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Live brokerage, exchange, wallet, or payment credentials outside an explicitly approved sandbox"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Live brokerage, exchange, wallet, or payment credentials outside an explicitly approved sandbox"],"knownRisks":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":73,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v5":{"version":"trust-score-v5","score":65,"base_score":73,"outcome_confidence":0,"tier":"review","label":"Sandbox only","summary":"Useful candidate with missing or mixed trust signals. Keep it in an isolated workspace until the outcome loop proves task fit.","recommendedAction":"Run only in a sandbox and compare close alternatives before using it for real work.","decision":{"install_policy":"sandbox_only","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["65/100 Trust Score v5","73/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":100,"weight":0.13,"status":"pass","detail":"11K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":100,"weight":0.08,"status":"pass","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"11K GitHub stars"},{"status":"pass","label":"Stars/forks activity","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Large GitHub adoption signal","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"11K GitHub stars","repoActivity":"11K stars, 5.7K forks","lastPushed":"16d since push","license":"Apache-2.0","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"sandbox_only"},"installReadiness":{"ready":true,"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","policy":"sandbox_only","label":"Sandbox only","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"sandbox_only","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["design-creative","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","trust_score":65,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Live brokerage, exchange, wallet, or payment credentials outside an explicitly approved sandbox"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Live brokerage, exchange, wallet, or payment credentials outside an explicitly approved sandbox"],"knownRisks":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":73,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout."}}},"trust_score_v4":{"version":"trust-score-v4","score":73,"tier":"strong","label":"Strong shortlist","summary":"Good trust signals with a few areas worth checking before rollout.","recommendedAction":"Test in a sandbox workflow and compare its install path with close alternatives.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":100,"weight":0.13,"status":"pass","detail":"11K GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":100,"weight":0.08,"status":"pass","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"Apache-2.0"},{"id":"documentation","label":"README/SKILL.md completeness","score":86,"weight":0.14,"status":"pass","detail":"Metadata includes enough usage and workflow context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":46,"weight":0.12,"status":"warn","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":22,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"pass","label":"GitHub adoption","detail":"11K GitHub stars"},{"status":"pass","label":"Stars/forks activity","detail":"11K stars, 5.7K forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"Apache-2.0"},{"status":"pass","label":"README/SKILL.md completeness","detail":"Metadata includes enough usage and workflow context"},{"status":"warn","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Large GitHub adoption signal","Install command has no obvious high-risk pattern"],"warnings":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"11K GitHub stars","repoActivity":"11K stars, 5.7K forks","lastPushed":"16d since push","license":"Apache-2.0","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","policy":"sandbox_only","label":"Sandbox only","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"sandbox_only","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["design-creative","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace","Live brokerage, exchange, wallet, or payment credentials outside an explicitly approved sandbox"],"knownRisks":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":39,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","summary":"This skill should not be selected by an agent without explicit human security review.","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","auto_install_policy":"block","reasons":["Audit risk exceeds the requested agent policy","Audit classified this skill as risky","Metadata combines secrets access with shell or command execution","Audit risk risky exceeds max_risk=medium"]},"auto_install_allowed":false,"human_review_required":true,"blocked":true,"audit_risk":"risky","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"browser","label":"Browser automation","reason":"Skill may drive a browser or interact with web pages.","severity":"medium"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"}],"policy_warnings":["Audit risk risky exceeds max_risk=medium","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","auto_install_policy":"block","auto_install_allowed":false,"blocked":true,"human_review_required":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","reasons":["Audit risk exceeds the requested agent policy","Audit classified this skill as risky","Metadata combines secrets access with shell or command execution","Audit risk risky exceeds max_risk=medium"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":74,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Audit score: Risky","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Audit score: Risky","Agent safety gate: This skill should not be selected by an agent without explicit human security review.","Permission surface: secrets or environment access, shell or command execution"],"warnings":["Trust score: Good trust signals with a few areas worth checking before rollout.","Audit risk risky exceeds max_risk=medium","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","Potential broker, wallet, exchange, or real-money execution surface; sandbox and explicit approval are required","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","The skill relies on a `sentinel_setup` tool and `hive.browser-automation` which are not fully defined in the skill, but they are referenced as dependencies.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate hive.slack-notifications-setup before installing it in an agent workflow","design-creative","Browser automation workflows; Claude Code teams; teams that value GitHub adoption signals"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add aden-hive/hive --skill hive.slack-notifications-setup"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add aden-hive/hive --skill hive.slack-notifications-setup"]},{"id":"trust_score","label":"Trust score","status":"warn","score":73,"required_for_auto_install":true,"detail":"Good trust signals with a few areas worth checking before rollout.","evidence":["Strong shortlist","11K GitHub stars","Apache-2.0"]},{"id":"audit_score","label":"Audit score","status":"fail","score":83,"required_for_auto_install":true,"detail":"Risky","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":39,"required_for_auto_install":true,"detail":"This skill should not be selected by an agent without explicit human security review.","evidence":["Do not auto-install. Inspect the source, dependencies, and permission surface first.","Audit risk exceeds the requested agent policy"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"pass","score":86,"required_for_auto_install":false,"detail":"Metadata includes enough usage and workflow context","evidence":["Strong README/SKILL.md context"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"Apache-2.0","evidence":["Apache-2.0"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"16d since push","evidence":["16d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":22,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Browser automation: medium","Network access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup/evals","api":"/api/agent/evals?slug=aden-hive-hive-slack-notifications-setup","text":"/api/agent/evals?slug=aden-hive-hive-slack-notifications-setup&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"aden-hive-hive-slack-notifications-setup","name":"hive.slack-notifications-setup","description":"Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation.","category":"design-creative","url":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","github_repo":"aden-hive/hive"},"suited_tasks":["Browser automation workflows","Claude Code teams","teams that value GitHub adoption signals","Navigate pages","Click and type safely","Check visual and DOM state","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","Browser agents","CLI"],"install":{"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add aden-hive-hive-slack-notifications-setup"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"hive.slack-notifications-setup\" agent skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"hive.slack-notifications-setup\" as a Claude Code skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"hive.slack-notifications-setup\" from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/aden-hive-hive-slack-notifications-setup/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/aden-hive-hive-slack-notifications-setup"},"trust":{"score":73,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"sandbox_only","evidence":{"stars":"11K GitHub stars","repoActivity":"11K stars, 5.7K forks","lastPushed":"16d since push","license":"Apache-2.0","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":83,"risk_level":"risky","risk_label":"Risky","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Potential broker, wallet, exchange, or real-money execution surface; sandbox and explicit approval are required","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","The skill relies on a `sentinel_setup` tool and `hive.browser-automation` which are not fully defined in the skill, but they are referenced as dependencies.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":88,"label":"Excellent"},"supply":{"track":"Coding and developer agents","scenario":"Coding agents","maintenance":"16d since push","risk":"Risky"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","No OpenAgentSkill engagement data yet","Audit risk risky exceeds max_risk=medium","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing"],"agent_contract":{"task_input":"Use hive.slack-notifications-setup in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 73/100 Strong shortlist","Audit: 83/100 Risky","Safety: 39/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"aden-hive-hive-slack-notifications-setup (hive.slack-notifications-setup)","install_command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","risk_summary":"Risky; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"aden-hive-hive-slack-notifications-setup","task":"Use hive.slack-notifications-setup in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup","api":"https://www.openagentskill.com/api/agent/skills/aden-hive-hive-slack-notifications-setup","audit":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=aden-hive-hive-slack-notifications-setup&task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/aden-hive-hive-slack-notifications-setup/install","manifest":"https://www.openagentskill.com/api/registry/manifest/aden-hive-hive-slack-notifications-setup"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"aden-hive-hive-slack-notifications-setup","name":"hive.slack-notifications-setup","description":"Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation.","category":"design-creative","url":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","github_repo":"aden-hive/hive"},"suited_tasks":["Browser automation workflows","Claude Code teams","teams that value GitHub adoption signals","Navigate pages","Click and type safely","Check visual and DOM state","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","Browser agents","CLI"],"install":{"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add aden-hive-hive-slack-notifications-setup"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"hive.slack-notifications-setup\" agent skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"hive.slack-notifications-setup\" as a Claude Code skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"hive.slack-notifications-setup\" from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/aden-hive-hive-slack-notifications-setup/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/aden-hive-hive-slack-notifications-setup"},"trust":{"score":73,"label":"Strong shortlist","version":"trust-score-v4","install_policy":"sandbox_only","evidence":{"stars":"11K GitHub stars","repoActivity":"11K stars, 5.7K forks","lastPushed":"16d since push","license":"Apache-2.0","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Strong README/SKILL.md context","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["design-creative","agent-skill"],"known_risks":["SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":83,"risk_level":"risky","risk_label":"Risky","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Potential broker, wallet, exchange, or real-money execution surface; sandbox and explicit approval are required","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","The skill relies on a `sentinel_setup` tool and `hive.browser-automation` which are not fully defined in the skill, but they are referenced as dependencies.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":88,"label":"Excellent"},"supply":{"track":"Coding and developer agents","scenario":"Coding agents","maintenance":"16d since push","risk":"Risky"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","No OpenAgentSkill engagement data yet","Audit risk risky exceeds max_risk=medium","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing"],"agent_contract":{"task_input":"Use hive.slack-notifications-setup in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 73/100 Strong shortlist","Audit: 83/100 Risky","Safety: 39/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"aden-hive-hive-slack-notifications-setup (hive.slack-notifications-setup)","install_command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","risk_summary":"Risky; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"aden-hive-hive-slack-notifications-setup","task":"Use hive.slack-notifications-setup in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup","api":"https://www.openagentskill.com/api/agent/skills/aden-hive-hive-slack-notifications-setup","audit":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=aden-hive-hive-slack-notifications-setup&task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20hive.slack-notifications-setup%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/aden-hive-hive-slack-notifications-setup/install","manifest":"https://www.openagentskill.com/api/registry/manifest/aden-hive-hive-slack-notifications-setup"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"Coding agents","description":"I need a coding agent that can understand a repository, edit code, and review pull requests.","useCases":[{"slug":"browser-automation","title":"Browser automation"},{"slug":"local-desktop","title":"Local desktop"},{"slug":"coding-agents","title":"Coding agents"}]},"applicableAgents":["Claude Code","Browser agents","CLI","Codex","Cursor"],"install":{"ready":true,"command":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":11006,"starsLabel":"11K","forks":5670,"license":"Apache-2.0","qualityScore":88,"trustScore":73,"auditScore":83},"maintenance":{"status":"fresh","label":"16d since push","daysSincePush":16,"lastPushedAt":"2026-08-21T05:30:06+00:00"},"risk":{"level":"risky","label":"Risky","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","Potential broker, wallet, exchange, or real-money execution surface; sandbox and explicit approval are required","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","The skill relies on a `sentinel_setup` tool and `hive.browser-automation` which are not fully defined in the skill, but they are referenced as dependencies."]},"coverageTags":["Coding","Coding agents","design-creative","agent-skill"]},"audit":{"audit_score":83,"risk_level":"risky","risk_label":"Risky","quality_score":88,"trust_score":73,"maintenance_score":100,"security_score":72,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","Potential broker, wallet, exchange, or real-money execution surface; sandbox and explicit approval are required","SKILL.md excerpt is truncated, but the provided portion is clear and complete for evaluation.","The skill relies on a `sentinel_setup` tool and `hive.browser-automation` which are not fully defined in the skill, but they are referenced as dependencies.","This skill may touch real-money trading, broker, wallet, or exchange operations; use only in a sandbox with explicit approval.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":28.29,"usage_score":0,"review_score":5.4,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code","Browser agents"],"use_cases":[{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"coding-agents","title":"Coding agents","url":"https://www.openagentskill.com/use-cases/coding-agents"},{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"}],"stacks":[{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"},{"slug":"frontend-product-ui","title":"Frontend and UI","url":"https://www.openagentskill.com/collections/frontend-product-ui"},{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"}],"install":"npx skills add aden-hive/hive --skill hive.slack-notifications-setup","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add aden-hive-hive-slack-notifications-setup","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"hive.slack-notifications-setup\" agent skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"hive.slack-notifications-setup\" as a Claude Code skill from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"hive.slack-notifications-setup\" from https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the \"Hive Sentinel\" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept replies. Use when the user asks to \"set up Slack notifications\", \"get pinged on Slack\", \"connect Slack for alerts\", \"set up Sentinel on Slack\", or clicks the in-app \"Set this up with the agent\" button on the Slack channel step. Requires hive.browser-automation. After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"aden-hive-hive-slack-notifications-setup\",\"task\":\"Install hive.slack-notifications-setup\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","github_repo":"aden-hive/hive","version":"1.0.0","license":"Apache-2.0","urls":{"web":"https://www.openagentskill.com/skills/aden-hive-hive-slack-notifications-setup","repository":"https://github.com/aden-hive/hive/tree/main/core/framework/skills/_default_skills/slack-notifications-setup","api":"/api/agent/skills/aden-hive-hive-slack-notifications-setup","install_api":"/api/skills/aden-hive-hive-slack-notifications-setup/install"},"meta":{"created_at":"2026-09-02T10:31:44.972947+00:00","updated_at":"2026-09-02T10:31:45.180332+00:00","agent_friendly":true}}