feat(slack-researcher): add Slack organizational context research agent (#495)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
101
docs/brainstorms/2026-04-02-slack-analyst-agent-requirements.md
Normal file
101
docs/brainstorms/2026-04-02-slack-analyst-agent-requirements.md
Normal file
@@ -0,0 +1,101 @@
|
||||
---
|
||||
date: 2026-04-02
|
||||
topic: slack-researcher-agent
|
||||
---
|
||||
|
||||
# Slack Analyst Agent
|
||||
|
||||
## Problem Frame
|
||||
|
||||
Coding agents operating within compound-engineering workflows (ideate, plan, brainstorm) have no visibility into organizational knowledge that lives in Slack. Decisions, constraints, ongoing discussions, and context about projects are often undocumented anywhere except Slack conversations. When a developer is about to make a change, relevant Slack context -- a discussion about why something was designed a certain way, a decision to deprecate a feature, constraints mentioned by another team -- is invisible to the agent assisting them.
|
||||
|
||||
The official Slack plugin provides user-facing commands (`/slack:find-discussions`, `/slack:summarize-channel`), but these are standalone and manual. There is no research agent that compound-engineering workflows can dispatch programmatically to surface Slack context as part of their normal research phase.
|
||||
|
||||
## Requirements
|
||||
|
||||
**Agent Identity and Placement**
|
||||
|
||||
- R1. Create a research-category agent at `agents/research/slack-researcher.md` following the established research agent pattern (frontmatter with name, description, model:inherit; examples block; phased execution).
|
||||
- R2. The agent's role is analytical: it searches Slack for context relevant to the task at hand and returns a concise, structured digest. It does not send messages, create canvases, or take any write actions in Slack.
|
||||
|
||||
---
|
||||
|
||||
**Precondition and Short-Circuit Design**
|
||||
|
||||
- R3. Two-level short-circuit to minimize token waste:
|
||||
- **Caller level:** Calling workflows check whether the Slack MCP server is connected before dispatching the agent. If unavailable, skip dispatch entirely. Detection should check for MCP availability (not specific tool names, which may change).
|
||||
- **Agent level:** The agent performs its own precondition check on entry. If Slack MCP tools are not accessible, return a short message ("Slack MCP not connected -- skipping Slack analysis") and exit immediately.
|
||||
- R4. The agent should also short-circuit if the caller provides no meaningful search context (e.g., an empty or overly generic topic). Return a message indicating insufficient context rather than running broad, low-value searches.
|
||||
|
||||
---
|
||||
|
||||
**Search Strategy**
|
||||
|
||||
- R5. Default behavior is search-first: run 2-3 targeted searches using `slack_search_public_and_private` based on keywords derived from the task topic. Search both public and private channels by default (user has already authed the Slack MCP).
|
||||
- R6. Read threads (`slack_read_thread`) only for high-relevance search hits -- not speculatively. Limit thread reads to avoid runaway token consumption (cap at ~3-5 thread reads per invocation).
|
||||
- R7. Accept an optional channel hint from the caller. When provided, also read recent history from the specified channel(s) using `slack_read_channel` with appropriate time bounds. Without a channel hint, do not read channel history -- search results are sufficient.
|
||||
- R8. Future consideration (not in scope): a user preference/setting for channels that should always be searched. Defer to a later iteration.
|
||||
|
||||
---
|
||||
|
||||
**Output Format**
|
||||
|
||||
- R9. Return a concise summary digest organized by topic/theme. Each finding should include:
|
||||
- The topic or theme
|
||||
- A brief summary of what was discussed/decided
|
||||
- Source attribution (channel name, approximate date, participants if notable)
|
||||
- Relevance to the current task
|
||||
- R10. When no relevant Slack context is found, return a short explicit statement ("No relevant Slack discussions found for [topic]") rather than generating filler.
|
||||
- R11. Keep output compact enough to be useful context without dominating the calling workflow's token budget. Target roughly 200-500 tokens for typical results.
|
||||
|
||||
---
|
||||
|
||||
**Workflow Integration**
|
||||
|
||||
- R12. Integrate into three calling workflows:
|
||||
- **ce:ideate** -- dispatch during Phase 1 (Codebase Scan), alongside learnings-researcher. Slack context enriches ideation by surfacing org discussions about the focus area.
|
||||
- **ce:plan** -- dispatch during the research/context-gathering phase. Slack context surfaces constraints, prior decisions, and ongoing discussions relevant to the implementation.
|
||||
- **ce:brainstorm** -- dispatch during Phase 1.1 (Existing Context Scan). Brainstorming especially benefits from knowing what the org has already discussed about the topic.
|
||||
- R13. In all calling workflows, dispatch the Slack analyst agent in parallel with other research agents (learnings-researcher, etc.) to avoid adding latency. Callers wait for all parallel agents to return before consolidating results (this is the existing pattern for parallel research dispatch). The Slack analyst's dispatch condition is MCP availability (R3). The agent itself handles the meaningful-context check (R4) internally.
|
||||
- R14. Callers should incorporate the Slack analyst's output into their existing context summary alongside other research results, not as a separate section.
|
||||
|
||||
---
|
||||
|
||||
**Dependency on External Plugin**
|
||||
|
||||
- R15. The Slack MCP server is owned by the official Slack plugin, not compound-engineering. The agent uses MCP tools that the Slack plugin configures. This creates a soft dependency: the agent is useful only when the Slack plugin is installed and authenticated, but compound-engineering must not require it.
|
||||
- R16. Do not bundle or reference the Slack plugin's `.mcp.json` or configuration from within compound-engineering. The agent relies solely on MCP tools being available at runtime.
|
||||
|
||||
## Success Criteria
|
||||
|
||||
- When Slack MCP is connected, the agent surfaces relevant org context that would not have been available from codebase analysis alone, enriching the output of ideate/plan/brainstorm workflows.
|
||||
- When Slack MCP is not connected, the agent adds zero token overhead (caller-level short-circuit prevents dispatch).
|
||||
- The agent completes within a reasonable time budget (~10-15 seconds) and returns compact output that doesn't bloat calling workflows.
|
||||
|
||||
## Scope Boundaries
|
||||
|
||||
- No write actions to Slack (no sending messages, no creating canvases).
|
||||
- No channel history reads unless the caller provides an explicit channel hint.
|
||||
- No user preference/settings system for default channels (deferred).
|
||||
- No replacement of existing Slack plugin commands -- this agent is complementary, not competitive.
|
||||
- No installation or configuration of the Slack MCP -- that remains the Slack plugin's responsibility.
|
||||
|
||||
## Key Decisions
|
||||
|
||||
- **Agent, not skill:** This is a sub-agent invoked programmatically by workflows, not a user-facing slash command. It lives in `agents/research/`.
|
||||
- **Public + private search by default:** The user already authed the Slack MCP, so searching private channels avoids missing the richest context.
|
||||
- **Search-first, reads on demand:** Avoids the token cost of speculatively reading channel history. Thread reads are limited to high-relevance hits.
|
||||
- **Concise digest output:** Callers are responsible for interpreting the output for their specific context. The agent returns useful summaries, not raw message dumps.
|
||||
- **MCP availability check, not tool-name check:** Callers check if the Slack MCP is connected, not for specific tool names (which may change in future Slack MCP versions).
|
||||
|
||||
## Outstanding Questions
|
||||
|
||||
### Deferred to Planning
|
||||
|
||||
- [Affects R3][Technical] How exactly should callers detect Slack MCP availability? Claude Code's tool list inspection, checking for any `slack_*` tool prefix, or another mechanism?
|
||||
- [Affects R5][Needs research] What is the optimal number of search queries per invocation to balance coverage vs. token cost? Start with 2-3 and tune based on real usage.
|
||||
- [Affects R12][Technical] What modifications are needed in ce:ideate, ce:plan, and ce:brainstorm skill files to add the conditional dispatch? Review each skill's research phase to find the right insertion point.
|
||||
|
||||
## Next Steps
|
||||
|
||||
-> `/ce:plan` for structured implementation planning
|
||||
289
docs/plans/2026-04-02-001-feat-slack-analyst-agent-plan.md
Normal file
289
docs/plans/2026-04-02-001-feat-slack-analyst-agent-plan.md
Normal file
@@ -0,0 +1,289 @@
|
||||
---
|
||||
title: "feat(slack-researcher): Add Slack analyst research agent with workflow integration"
|
||||
type: feat
|
||||
status: active
|
||||
date: 2026-04-02
|
||||
origin: docs/brainstorms/2026-04-02-slack-analyst-agent-requirements.md
|
||||
---
|
||||
|
||||
# feat(slack-researcher): Add Slack analyst research agent with workflow integration
|
||||
|
||||
## Overview
|
||||
|
||||
Add a new research agent (`slack-researcher`) to the compound-engineering plugin that searches Slack for organizational context relevant to the current task. Integrate it as a conditional parallel dispatch in ce:ideate, ce:plan, and ce:brainstorm, with two-level short-circuiting to avoid token waste when the Slack MCP is not connected.
|
||||
|
||||
## Problem Frame
|
||||
|
||||
Coding agents have no visibility into organizational knowledge that lives in Slack — decisions, constraints, ongoing discussions about projects. The official Slack plugin provides user-facing commands but no programmatic research agent that compound-engineering workflows can dispatch during their normal research phase. (see origin: `docs/brainstorms/2026-04-02-slack-researcher-agent-requirements.md`)
|
||||
|
||||
## Requirements Trace
|
||||
|
||||
- R1. Research agent at `agents/research/slack-researcher.md` following established patterns
|
||||
- R2. Read-only: searches Slack and returns digests, no write actions
|
||||
- R3. Two-level short-circuit: caller checks MCP availability, agent checks internally
|
||||
- R4. Agent short-circuits on empty/generic topic
|
||||
- R5. Search-first with `slack_search_public_and_private`, 2-3 queries
|
||||
- R6. Thread reads limited to 3-5 high-relevance hits
|
||||
- R7. Optional channel hint from caller for targeted `slack_read_channel`
|
||||
- R8. Deferred per origin (user preference/settings for default channels — not in scope for this iteration)
|
||||
- R9-R11. Concise digest output, ~200-500 tokens, explicit "no results" message
|
||||
- R12-R13. Conditional parallel dispatch in ce:ideate, ce:plan, ce:brainstorm; callers wait for all agents before consolidating
|
||||
- R14. Deviation from origin: origin says "not as a separate section," but this plan keeps Slack context as a distinct section in the consolidation summary (matching the pattern used for issue intelligence). Rationale: distinct sections let downstream sub-agents differentiate signal types (code-observed vs. org-discussed). This is a plan-level decision that overrides R14's original wording
|
||||
- R15-R16. Soft dependency on Slack plugin's MCP; no bundling of Slack config
|
||||
|
||||
## Scope Boundaries
|
||||
|
||||
- No Slack write actions (see origin)
|
||||
- No channel history reads without explicit channel hint (see origin)
|
||||
- No user preference/settings for default channels (deferred, see origin)
|
||||
- No changes to the Slack plugin itself
|
||||
- ce:work is explicitly excluded from integration (see origin)
|
||||
|
||||
## Context & Research
|
||||
|
||||
### Relevant Code and Patterns
|
||||
|
||||
- `plugins/compound-engineering/agents/research/issue-intelligence-analyst.md` — closest precedent: external dependency, conditional dispatch, precondition checks with two-tier degradation, structured output
|
||||
- `plugins/compound-engineering/agents/research/learnings-researcher.md` — output format precedent: topic-organized digest with source attribution
|
||||
- `plugins/compound-engineering/skills/ce-ideate/SKILL.md` lines 116-122 — conditional dispatch pattern: trigger condition in prior phase, parallel dispatch, error handling with warning + continue
|
||||
- `plugins/compound-engineering/skills/ce-plan/SKILL.md` lines 157-167 — parallel research agent dispatch pattern
|
||||
- `plugins/compound-engineering/skills/ce-brainstorm/SKILL.md` lines 81-97 — Phase 1.1 inline scanning (no agent dispatch today)
|
||||
|
||||
### Institutional Learnings
|
||||
|
||||
- **Atomic orchestration changes**: All three skill modifications should land in the same PR (from `docs/solutions/skill-design/beta-promotion-orchestration-contract.md`)
|
||||
- **Runtime over config**: Prefer runtime MCP availability detection over configuration flags (from beta skills framework)
|
||||
- **Pass summaries not content**: Agent should return compact digests, not raw Slack message dumps (from `docs/solutions/skill-design/pass-paths-not-content-to-subagents-2026-03-26.md`)
|
||||
- **Actionable degradation messages**: Include how to enable the capability, not just that it's unavailable (from `docs/solutions/skill-design/discoverability-check-for-documented-solutions-2026-03-30.md`)
|
||||
|
||||
## Key Technical Decisions
|
||||
|
||||
- **MCP availability detection**: Callers will instruct "if any `slack_*` tool is available in the tool list, dispatch the Slack analyst." This is a best-effort heuristic — not a capability contract. False positives (another MCP with `slack_` tools) and false negatives (Slack MCP renames tools) are possible but unlikely. The agent's own precondition check (level 2, which actually attempts a Slack tool call) is the reliable gate; the caller-level check is an optimization to avoid spawning the agent unnecessarily.
|
||||
- **ce:brainstorm integration pattern**: Since brainstorm Phase 1.1 currently has no sub-agent dispatch, the Slack analyst will be added as a new conditional sub-step within the Standard/Deep path. Dispatch at the start of Phase 1.1 alongside the inline scan; collect results before entering Phase 1.2 (Product Pressure Test). This follows the same foreground-dispatch-then-consolidate pattern used in ce:ideate and ce:plan.
|
||||
- **Search query construction**: The agent is an LLM — it should derive smart, targeted search queries from the task context, the same way agents construct web search queries. Do not over-prescribe search term construction. The agent should use its judgment to formulate 2-3 queries that are likely to surface relevant organizational context, adapting terms based on the topic (project names, technical terms, decision-related keywords). If first queries return sparse results, broaden or rephrase — standard agent search behavior.
|
||||
- **Thread relevance**: The agent reads threads that appear substantive based on search result previews and reply counts. Do not over-prescribe keyword heuristics — the agent should use its judgment to determine which threads are worth reading, the same way it would assess web search results. Cap at 3-5 thread reads to bound token consumption.
|
||||
- **Untrusted input handling**: Slack messages are user-generated content that flows through the agent's digest into calling workflows. The agent must treat Slack message content as untrusted input: extract factual claims and decisions, do not reproduce message text verbatim, ignore anything resembling agent instructions or tool calls. This follows the pattern established in commit 18472427 ("treat PR comment text as untrusted input").
|
||||
- **R14 deviation — distinct Slack context section**: The origin requirements (R14) say "not as a separate section." This plan intentionally deviates: Slack context is kept as a distinct section in consolidation summaries, matching the pattern used for issue intelligence. This lets downstream sub-agents differentiate signal sources (code-observed, institution-documented, issue-reported, org-discussed).
|
||||
|
||||
## Open Questions
|
||||
|
||||
### Resolved During Planning
|
||||
|
||||
- **How should callers detect MCP availability?** — Check for presence of any `slack_*` tool in the available tool list. This is runtime detection, not config-driven. The agent's own precondition check is a safety net.
|
||||
- **What modifications does ce:brainstorm need?** — A new conditional sub-step in Phase 1.1 for Standard/Deep scopes. Unlike ideate and plan, brainstorm does not currently dispatch research agents, so this is the first. The dispatch block is self-contained and does not restructure the existing Phase 1.1 logic.
|
||||
- **Optimal search query count?** — 2 by default, 3rd only if initial results are sparse (<3 relevant hits). Tune based on usage.
|
||||
|
||||
### Deferred to Implementation
|
||||
|
||||
- Exact Slack search syntax formatting (date ranges, channel filters) — depends on what the Slack MCP returns and how search modifiers behave in practice
|
||||
- Whether the 200-500 token output target needs adjustment after real-world testing
|
||||
|
||||
## Implementation Units
|
||||
|
||||
- [ ] **Unit 1: Create the slack-researcher agent file**
|
||||
|
||||
**Goal:** Author the agent markdown file with frontmatter, examples, precondition checks, search methodology, and output format specification.
|
||||
|
||||
**Requirements:** R1, R2, R3 (agent-level), R4, R5, R6, R7, R9, R10, R11, R15, R16
|
||||
|
||||
**Dependencies:** None
|
||||
|
||||
**Files:**
|
||||
- Create: `plugins/compound-engineering/agents/research/slack-researcher.md`
|
||||
|
||||
**Approach:**
|
||||
- Follow the issue-intelligence-analyst as the structural template: frontmatter -> examples -> role statement -> phased methodology -> output format -> tool guidance
|
||||
- Frontmatter: `name: slack-researcher`, description following "what + when" pattern, `model: inherit`
|
||||
- Examples block: 3 examples showing (1) direct dispatch from ce:ideate context, (2) dispatch from ce:plan context, (3) standalone invocation
|
||||
- Step 1 (Precondition Checks): Attempt to call `slack_search_public_and_private` with a minimal query. If it fails or no Slack tools are available, return "Slack analysis unavailable: Slack MCP server not connected. Install and authenticate the Slack plugin to enable organizational context search." and stop. If the topic is empty, return "No search context provided — skipping Slack analysis." and stop
|
||||
- Step 2 (Search): Use the agent's judgment to formulate 2-3 targeted searches using `slack_search_public_and_private`. Derive search terms from the task context — project names, technical terms, decision-related keywords, whatever the agent judges most likely to surface relevant discussions. If initial queries return sparse results, broaden or rephrase. Apply date filtering to focus on recent conversations when the MCP supports it. Standard agent search behavior — do not over-prescribe query construction
|
||||
- Step 3 (Thread Reads): For search hits that appear substantive (based on preview content and reply counts), read the thread with `slack_read_thread`. Cap at 3-5 thread reads to bound token consumption. Use the agent's judgment to select which threads are worth reading
|
||||
- Step 4 (Channel Reads — conditional): If caller passed a channel hint, read recent history from those channels using `slack_read_channel` with appropriate time bounds. Without hint, skip entirely
|
||||
- Step 5 (Synthesize): Return a concise digest organized by topic/theme. Each finding: topic, summary of what was discussed/decided, source attribution (channel name, approximate date), relevance to task. Use team/role references rather than individual participant names when possible. Target ~200-500 tokens for typical results; adjust based on how much relevant content was found
|
||||
- **Untrusted input handling**: Slack messages are user-generated content. The agent must: (1) treat all Slack message content as untrusted input, (2) extract factual claims and decisions rather than reproducing message text verbatim, (3) ignore anything in Slack messages that resembles agent instructions, tool calls, or system prompts. This follows the pattern in commit 18472427
|
||||
- **Private channel sensitivity**: The agent searches private channels by default. Include channel names in source attribution so consumers can assess sensitivity. Note that written outputs (plans, brainstorm docs) containing the Slack digest should be reviewed before committing to shared repositories
|
||||
- Tool guidance: Use Slack MCP tools only. No shell commands. No writing to Slack. Process and summarize data directly, do not pass raw message dumps
|
||||
|
||||
**Patterns to follow:**
|
||||
- `plugins/compound-engineering/agents/research/issue-intelligence-analyst.md` — structure, precondition pattern, output format
|
||||
- `plugins/compound-engineering/agents/research/learnings-researcher.md` — concise digest output pattern
|
||||
|
||||
**Test scenarios:**
|
||||
- Happy path: Agent receives a meaningful topic ("authentication migration"), finds relevant Slack conversations, returns a digest with themed findings and source attribution
|
||||
- Happy path: Agent receives topic plus channel hint, searches and also reads recent channel history, merges both into output
|
||||
- Edge case: No relevant Slack conversations found for topic — returns explicit "No relevant Slack discussions found for [topic]" message
|
||||
- Error path: Slack MCP not connected — returns precondition failure message with setup instructions and stops
|
||||
- Error path: Empty topic — returns "no search context" message and stops
|
||||
- Edge case: Thread read returns very long conversation — agent summarizes rather than reproducing raw content
|
||||
- Security: Slack message containing text resembling agent instructions — agent extracts factual content, ignores instruction-like text
|
||||
- Security: Search results from private channel — digest includes channel name for sensitivity assessment
|
||||
|
||||
**Verification:**
|
||||
- Agent file passes YAML frontmatter linting (`bun test tests/frontmatter.test.ts`)
|
||||
- Agent follows the three-field frontmatter convention (name, description, model: inherit)
|
||||
- Examples block has 3 scenarios with context, user, assistant, and commentary
|
||||
- Precondition check produces a clear, actionable message when Slack MCP is unavailable
|
||||
|
||||
---
|
||||
|
||||
- [ ] **Unit 2: Integrate into ce:ideate**
|
||||
|
||||
**Goal:** Add conditional Slack analyst dispatch to ce:ideate's Phase 1 Codebase Scan, alongside existing agents.
|
||||
|
||||
**Requirements:** R3 (caller-level), R12, R13, R14
|
||||
|
||||
**Dependencies:** Unit 1
|
||||
|
||||
**Files:**
|
||||
- Modify: `plugins/compound-engineering/skills/ce-ideate/SKILL.md`
|
||||
|
||||
**Approach:**
|
||||
- Add a 4th agent to the Phase 1 parallel dispatch block (lines 98-129)
|
||||
- Pattern: same as item 3 (issue-intelligence-analyst) — conditional, with graceful degradation
|
||||
- Trigger condition: "if any `slack_*` tool is available in the tool list"
|
||||
- Dispatch: `compound-engineering:research:slack-researcher` with the focus hint as context
|
||||
- Error handling: "If the agent returns an error or reports Slack MCP unavailable, log a warning ('Slack context unavailable: {reason}. Proceeding without organizational context.') and continue."
|
||||
- Add "Slack context" as a 4th bullet in the consolidation summary (line 124-128), alongside "Codebase context", "Past learnings", and "Issue intelligence": `**Slack context** (when present) — relevant organizational discussions, decisions, and constraints from Slack`
|
||||
- The Slack context section is kept distinct in the grounding summary so ideation sub-agents can distinguish code-observed, institution-documented, issue-reported, and org-discussed signals
|
||||
|
||||
**Patterns to follow:**
|
||||
- ce:ideate lines 116-122 — issue-intelligence-analyst conditional dispatch pattern
|
||||
|
||||
**Test scenarios:**
|
||||
- Happy path: Slack MCP available, agent returns findings — findings appear in the grounding summary under "Slack context"
|
||||
- Happy path: Slack MCP not available — ce:ideate proceeds without Slack context, no error, warning logged
|
||||
- Edge case: Slack agent returns "no relevant discussions" — noted briefly in summary, ideation proceeds with other sources
|
||||
- Integration: Slack analyst runs in parallel with quick context scan, learnings-researcher, and (conditional) issue-intelligence-analyst — no sequential dependency
|
||||
|
||||
**Verification:**
|
||||
- ce:ideate skill file still passes YAML frontmatter validation
|
||||
- Parallel dispatch block lists 4 agents (3 existing + slack-researcher)
|
||||
- Consolidation summary has 4 sections (codebase, learnings, issues, slack)
|
||||
|
||||
---
|
||||
|
||||
- [ ] **Unit 3: Integrate into ce:plan**
|
||||
|
||||
**Goal:** Add conditional Slack analyst dispatch to ce:plan's Phase 1.1 Local Research, alongside existing agents.
|
||||
|
||||
**Requirements:** R3 (caller-level), R12, R13, R14
|
||||
|
||||
**Dependencies:** Unit 1
|
||||
|
||||
**Files:**
|
||||
- Modify: `plugins/compound-engineering/skills/ce-plan/SKILL.md`
|
||||
|
||||
**Approach:**
|
||||
- Add a 3rd agent to the Phase 1.1 parallel dispatch block (lines 157-160)
|
||||
- Use the same `Task` syntax: `Task compound-engineering:research:slack-researcher({planning context summary})`
|
||||
- Add condition: "(conditional) — if any `slack_*` tool is available in the tool list"
|
||||
- Add error handling consistent with ce:ideate pattern
|
||||
- Add "Organizational context from Slack" to the "Collect:" list (lines 162-167)
|
||||
- In Phase 1.4 (Consolidate Research), add a bullet for Slack context in the summary
|
||||
|
||||
**Patterns to follow:**
|
||||
- ce:plan lines 157-160 — `Task` dispatch syntax for parallel agents
|
||||
|
||||
**Test scenarios:**
|
||||
- Happy path: Slack MCP available, agent returns relevant org context — appears in research consolidation alongside codebase patterns and learnings
|
||||
- Happy path: Slack MCP not available — ce:plan proceeds with 2-agent research (existing behavior), warning logged
|
||||
- Integration: Slack analyst runs in parallel with repo-research-analyst and learnings-researcher — no added latency
|
||||
|
||||
**Verification:**
|
||||
- ce:plan skill file still passes YAML frontmatter validation
|
||||
- Phase 1.1 dispatch block lists 3 agents (2 existing + slack-researcher)
|
||||
- Collect list includes Slack context
|
||||
|
||||
---
|
||||
|
||||
- [ ] **Unit 4: Integrate into ce:brainstorm**
|
||||
|
||||
**Goal:** Add conditional Slack analyst dispatch to ce:brainstorm's Phase 1.1 Existing Context Scan for Standard and Deep scopes.
|
||||
|
||||
**Requirements:** R3 (caller-level), R12, R13, R14
|
||||
|
||||
**Dependencies:** Unit 1
|
||||
|
||||
**Files:**
|
||||
- Modify: `plugins/compound-engineering/skills/ce-brainstorm/SKILL.md`
|
||||
|
||||
**Approach:**
|
||||
- This is the most distinctive integration: ce:brainstorm Phase 1.1 currently has no sub-agent dispatch. Add a conditional dispatch sub-step within the "Standard and Deep" path, after the Topic Scan pass.
|
||||
- Add a new paragraph after the Topic Scan (after line 91): "**Slack context** (conditional) — if any `slack_*` tool is available in the tool list, dispatch `compound-engineering:research:slack-researcher` with a brief summary of the brainstorm topic. If the agent returns an error, log a warning and continue. Collect results before entering Phase 1.2 (Product Pressure Test). Incorporate any Slack findings into the constraint and context awareness for the brainstorm session."
|
||||
- Coordination: dispatch the Slack agent at the start of Phase 1.1 alongside the inline Constraint Check and Topic Scan. Wait for all to complete before proceeding to Phase 1.2. This follows the same foreground-dispatch-then-consolidate pattern used in ce:ideate and ce:plan
|
||||
- Lightweight scope skips this entirely (consistent with "search for the topic, check if something similar already exists, and move on")
|
||||
|
||||
**Patterns to follow:**
|
||||
- ce:ideate lines 116-122 — conditional dispatch wording and error handling
|
||||
- ce:brainstorm lines 87-91 — Standard/Deep scope gating
|
||||
|
||||
**Test scenarios:**
|
||||
- Happy path: Standard scope brainstorm with Slack MCP available — Slack context surfaces relevant org discussions that inform the brainstorm
|
||||
- Happy path: Lightweight scope — Slack dispatch skipped entirely (consistent with Lightweight's minimal scan)
|
||||
- Happy path: Slack MCP not available — brainstorm proceeds with existing inline scanning, no error
|
||||
- Edge case: Slack agent returns no relevant discussions — brainstorm proceeds normally
|
||||
|
||||
**Verification:**
|
||||
- ce:brainstorm skill file still passes YAML frontmatter validation
|
||||
- Conditional dispatch appears only in Standard/Deep path, not Lightweight
|
||||
- Error handling follows the same pattern as ce:ideate and ce:plan
|
||||
|
||||
---
|
||||
|
||||
- [ ] **Unit 5: Update README and validate**
|
||||
|
||||
**Goal:** Add the new agent to the README inventory table and validate plugin consistency.
|
||||
|
||||
**Requirements:** R1
|
||||
|
||||
**Dependencies:** Units 1-4
|
||||
|
||||
**Files:**
|
||||
- Modify: `plugins/compound-engineering/README.md`
|
||||
|
||||
**Approach:**
|
||||
- Add a row to the Research agents table (after line 152): `| \`slack-researcher\` | Search Slack for organizational context relevant to the current task |`
|
||||
- Check component count at line 9 — update the agents count if it no longer reflects the actual count (currently "35+"; actual is now 50 with the new agent, so this should be updated)
|
||||
- Run `bun run release:validate` to confirm plugin/marketplace consistency
|
||||
|
||||
**Patterns to follow:**
|
||||
- Existing rows in the Research agents table (lines 147-152)
|
||||
|
||||
**Test scenarios:**
|
||||
- Happy path: `bun run release:validate` passes after all changes
|
||||
- Edge case: Component count in README matches actual agent count
|
||||
|
||||
**Verification:**
|
||||
- `bun run release:validate` exits cleanly
|
||||
- README Research table has 7 agents (6 existing + slack-researcher)
|
||||
- Component count reflects actual totals
|
||||
|
||||
## System-Wide Impact
|
||||
|
||||
- **Interaction graph:** The new agent is invoked by 3 skill files (ce:ideate, ce:plan, ce:brainstorm) via conditional parallel dispatch. It calls Slack MCP tools (`slack_search_public_and_private`, `slack_read_thread`, optionally `slack_read_channel`). No callbacks, observers, or middleware involved.
|
||||
- **Error propagation:** Agent failures are caught at the caller level. Each caller logs a warning and continues without Slack context. No failure in the Slack agent should halt or degrade the calling workflow.
|
||||
- **State lifecycle risks:** None — the agent is stateless and read-only. No data is persisted, no caches are populated.
|
||||
- **API surface parity:** No external API surface changes. The agent is an internal sub-agent, not a user-facing command.
|
||||
- **Integration coverage:** The key cross-layer scenario is the full path: caller detects MCP availability -> dispatches agent -> agent runs precondition check -> searches Slack -> returns digest -> caller incorporates into context summary. Each caller (ideate, plan, brainstorm) should be tested for both MCP-available and MCP-unavailable paths.
|
||||
- **Unchanged invariants:** Existing Slack plugin commands (`/slack:find-discussions`, `/slack:summarize-channel`, etc.) are unmodified. The existing behavior of ce:ideate, ce:plan, and ce:brainstorm is preserved when Slack MCP is not connected — no regression in the zero-Slack case.
|
||||
|
||||
## Risks & Dependencies
|
||||
|
||||
| Risk | Mitigation |
|
||||
|------|------------|
|
||||
| Slack MCP tools may change names or behavior | Agent-level precondition check handles failure gracefully; caller-level check uses `slack_*` prefix pattern, not specific tool names |
|
||||
| Slack search returns noisy results | Agent applies date filtering (last 90 days) and thread relevance heuristics before reading threads |
|
||||
| Token budget exceeded by verbose Slack data | Agent caps thread reads at 3-5, targets 200-500 token output, summarizes rather than passing raw messages |
|
||||
| ce:brainstorm integration is the first sub-agent dispatch in Phase 1.1 | Integration is a self-contained conditional block; it does not restructure the existing inline scan logic |
|
||||
| Soft dependency on external Slack plugin | Two-level short-circuit ensures zero cost when unavailable; README documents the dependency |
|
||||
| Indirect prompt injection via crafted Slack messages | Agent treats all Slack content as untrusted input; extracts factual claims, ignores instruction-like text (follows commit 18472427 pattern) |
|
||||
| Private channel content in shared outputs | Channel names included in attribution for sensitivity assessment; note in agent that outputs should be reviewed before committing to shared repos |
|
||||
| Thread heuristic is English-centric | Known limitation; agent uses general judgment rather than hardcoded keywords; acceptable for v1, can be improved if needed |
|
||||
|
||||
## Sources & References
|
||||
|
||||
- **Origin document:** [docs/brainstorms/2026-04-02-slack-researcher-agent-requirements.md](docs/brainstorms/2026-04-02-slack-researcher-agent-requirements.md)
|
||||
- Related agent: `plugins/compound-engineering/agents/research/issue-intelligence-analyst.md`
|
||||
- Related skills: `plugins/compound-engineering/skills/ce-ideate/SKILL.md`, `plugins/compound-engineering/skills/ce-plan/SKILL.md`, `plugins/compound-engineering/skills/ce-brainstorm/SKILL.md`
|
||||
- Slack MCP docs: `https://docs.slack.dev/ai/slack-mcp-server/`
|
||||
- Institutional learnings: `docs/solutions/skill-design/beta-promotion-orchestration-contract.md`, `docs/solutions/skill-design/pass-paths-not-content-to-subagents-2026-03-26.md`
|
||||
Reference in New Issue
Block a user