slack-status
Validates Slack configuration and credentials. Checks if config exists, credentials are present, and authentication is working. Used internally by other Slack skills.
What this skill does
# Slack Status Skill Validates Slack plugin configuration and credentials. This skill is used internally by other Slack skills to ensure everything is properly configured before attempting operations. ## Usage This skill is called automatically by other Slack skills. You can also use it directly to check the status of your Slack configuration. **When the user asks:** - "Is Slack configured?" - "Check Slack status" - "Are my Slack credentials valid?" Run the status check script: ```bash ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-status/check.sh ``` ## Output Format The script returns a status string in the format: `STATUS|MESSAGE|DETAILS` ### Status Codes **OK** - Everything is working ``` OK|Ready to use|Workspace: a8c.slack.com, Team: Automattic, User: djalma.araujo (U01ULLNEM3Q), Cached users: 12000 ``` **MISSING_CONFIG** - Config file doesn't exist ``` MISSING_CONFIG|Config file not found|Create config at: ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/config.json ``` **MISSING_CREDENTIALS** - Config exists but missing required fields ``` MISSING_CREDENTIALS|Missing required fields|Check workspace, token, and cookie in config ``` **INVALID_AUTH** - Credentials are invalid ``` INVALID_AUTH|Authentication failed|Error: invalid_auth - Please refresh your credentials ``` **EXPIRED_TOKEN** - Token has expired ``` EXPIRED_TOKEN|Token expired|Please refresh your credentials ``` **API_ERROR** - Other Slack API errors ``` API_ERROR|Slack API error|Error: rate_limited ``` ## Integration with Other Skills Other skills should call this check before performing operations: ```bash # Check status STATUS_OUTPUT=$(~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-status/check.sh) STATUS_CODE=$(echo "$STATUS_OUTPUT" | cut -d'|' -f1) if [ "$STATUS_CODE" != "OK" ]; then STATUS_MESSAGE=$(echo "$STATUS_OUTPUT" | cut -d'|' -f2) echo "⚠️ $STATUS_MESSAGE" >&2 # Optionally call slack-setup # ~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/skills/slack-setup/setup.sh exit 1 fi # Proceed with operation... ``` ## What It Checks 1. **Config file exists** - Looks for `~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/config.json` 2. **Required fields present** - Validates `workspace`, `token`, `cookie` 3. **Authentication works** - Calls `auth.test` API to verify credentials 4. **Token not expired** - Checks for expiration errors ## Notes - This skill is designed to be called programmatically by other skills - Exit code 0 = success, Exit code 1 = failure - All diagnostic information is in the output string - Uses shared libraries from `~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/lib/config.sh` and `~/.claude/plugins/marketplaces/djalmaaraujo-claude-code-plugins/plugins/slack/lib/slack-api.sh`
Related in Productivity
gitea-workflow
IncludedOrchestrate agile development workflows for Gitea repositories using the tea CLI. Use when working with Gitea-hosted repos and asking to 'run the workflow', 'continue working', 'what's next', 'complete the task cycle', 'start my day', 'end the sprint', 'implement the next task', or wanting guided step-by-step development assistance. Keywords: workflow, orchestrate, agile, task cycle, sprint, daily, implement, review, PR, standup, retrospective, gitea, tea.
microsoft-graph-gateway
IncludedRoute Microsoft Graph work in this workspace. Use when users want to read or write Outlook mail, calendar events, contacts, OneDrive or SharePoint files, Teams, Planner, To Do, users, groups, directory data, or arbitrary Microsoft Graph endpoints from VS Code. Prefer WorkIQ for common read scenarios. Use Microsoft Graph for write actions and gap-read scenarios that need exact Graph properties, filters, permissions, or endpoints.
copilotkit
IncludedUse when building with CopilotKit — setup, development, integrations, debugging, upgrading, or contributing. Routes to the appropriate specialized skill based on the task.
wordly-wisdom
IncludedProvides calibrated decision analysis using Charlie Munger-style multiple mental models, inversion, incentive mapping, circle-of-competence checks, misjudgment audits, second-order effects, and forecast updates. Use when the user asks for an oracle take, a hard call, a decision memo, a premortem, an outside view, a red-team, a sanity-check, what am I missing, think this through, or wants a strategy, hire, investment, plan, product, partnership, or major life choice analysed. Avoid for simple factual lookups or time-sensitive legal, medical, or market questions without fresh evidence.
swain-session
IncludedSession management and project status dashboard. Owns the full session lifecycle (start/work/close/resume), focus lane, bookmarks, worktree detection, and tab naming. Also serves as the project status dashboard — shows active epics, progress, actionable next steps, blocked items, tasks, GitHub issues, and recommendations. Worktree creation is deferred to swain-do task dispatch (SPEC-195). Triggers on: 'session', 'status', 'what's next', 'dashboard', 'overview', 'where are we', 'what should I work on', 'show me priorities', 'bookmark', 'focus on', 'session info'.
gandi
IncludedComprehensive Gandi domain registrar integration for domain and DNS management. Register and manage domains, create/update/delete DNS records (A, AAAA, CNAME, MX, TXT, SRV, and more), configure email forwarding and aliases, check SSL certificate status, create DNS snapshots for safe rollback, bulk update zone files, and monitor domain expiration. Supports multi-domain management, zone file import/export, and automated DNS backups. Includes both read-only and destructive operations with safety controls.