plugins/utopia-studio-cobuild-product/skills/integration-linker/SKILL.md
Detects and connects development tools — Slack with GitHub, Linear with Git, error tracking with notifications. Provides step-by-step setup procedures for each integration. Use when the user asks to "connect tools", "link Slack", "set up notifications", "integrate Linear", or "connect my tools". Don't use for monitoring setup (use monitoring-setup), deployment (use deployment-engineer), or security (use security-auditor).
npx skillsauth add The-Utopia-Studio/skills integration-linkerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Detects which development tools are in use and connects them together with step-by-step procedures.
# Detect Slack
grep -rn "SLACK_\|slack-sdk\|@slack/\|slack-webhook" --include="*.ts" --include="*.js" --include="*.py" --include="*.env*" . 2>/dev/null | head -5
# Detect Linear
grep -rn "LINEAR_\|linear-sdk\|@linear/sdk" --include="*.ts" --include="*.js" --include="*.env*" . 2>/dev/null | head -5
# Detect project management (Jira, Asana, Notion)
grep -rn "JIRA_\|ASANA_\|NOTION_\|jira\|asana\|@notionhq" --include="*.ts" --include="*.js" --include="*.env*" . 2>/dev/null | head -5
# Detect CI/CD (already linked?)
ls .github/workflows/ 2>/dev/null
# Detect error tracking (Sentry, PostHog)
grep -rn "SENTRY_DSN\|POSTHOG_\|sentry\|posthog" --include="*.ts" --include="*.js" --include="*.env*" . 2>/dev/null | head -5
# Detect hosting platform
ls vercel.json railway.toml fly.toml render.yaml 2>/dev/null
Source: GitHub Slack integration
/github subscribe owner/repoTo customize notifications:
# In Slack channel:
/github subscribe owner/repo pulls commits releases deployments
/github unsubscribe owner/repo issues
For webhook-based alerts (more control):
# .github/workflows/notify-slack.yml
name: Slack Notification
on:
push:
branches: [main]
pull_request:
types: [opened, merged]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- uses: slackapi/slack-github-action@v2
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
payload: |
{"text": "${{ github.event_name }}: ${{ github.event.pull_request.title || github.event.head_commit.message }}"}
Source: Linear GitHub integration docs
Branch naming convention (auto-links PRs to issues):
# Use Linear issue ID in branch name:
git checkout -b feat/LIN-123-add-user-auth
# Or in PR title:
# "LIN-123: Add user authentication"
Magic words in PR description (alternative linking):
Fixes LIN-123
Closes LIN-123
Resolves LIN-123
Workflow automations (per-team settings):
Source: Sentry Integrations
## 🔗 Integration Status
### Currently Connected
- {Tool A} ↔ {Tool B}: {what's linked}
### Recommended Connections
1. **{Tool A} → {Tool B}** — Why: {one sentence value prop}
Setup time: ~{X} minutes
Steps: {numbered list}
### Connectivity Map
GitHub ──→ Slack (PR notifications)
│
└──→ Linear (auto-link issues)
│
└──→ Vercel (auto-deploy)
│
└──→ Slack (deploy notifications)
Sentry ──→ Slack (error alerts)
development
Create professional equity research earnings update reports (8-12 pages, 3,000-5,000 words) analyzing quarterly results for companies already under coverage. Fast-turnaround format focusing on beat/miss analysis, key metrics, updated estimates, and revised thesis. Includes 1-3 summary tables and 8-12 charts. Use when user requests "earnings update", "quarterly update", "earnings analysis", "Q1/Q2/Q3/Q4 results", or post-earnings report.
development
Updates a presentation with new numbers — quarterly refreshes, earnings updates, comp rolls, rebased market data. Use whenever the user asks to "update the deck with Q4 numbers", "refresh the comps", "roll this forward", "swap in the new earnings", "change all the $485M to $512M", or any request to swap figures across an existing deck without rebuilding it.
development
Real DCF (Discounted Cash Flow) model creation for equity valuation. Retrieves financial data from SEC filings and analyst reports, builds comprehensive cash flow projections with proper WACC calculations, performs sensitivity analysis, and outputs professional Excel models with executive summaries. Use when users need to value a company using DCF methodology, request intrinsic value analysis, or ask for detailed financial modeling with growth projections and terminal value calculations.
tools
Build professional financial services data packs from various sources including CIMs, offering memorandums, SEC filings, web search, or MCP servers. Extract, normalize, and standardize financial data into investment committee-ready Excel workbooks with consistent structure, proper formatting, and documented assumptions. Use for M&A due diligence, private equity analysis, investment committee materials, and standardizing financial reporting across portfolio companies. Do not use for simple financial calculations or working with already-completed data packs.