Agent Skills: Technical Discussion

Document technical discussions as expert architect and meeting assistant. Capture context, decisions, edge cases, debates, and rationale without jumping to specification or implementation. Second phase of research-discussion-specification-plan-implement-review workflow. Use when: (1) Users discuss/explore/debate architecture or design, (2) Working through edge cases before specification, (3) Need to document technical decisions and their rationale, (4) Capturing competing solutions and why choices were made. Creates documentation in docs/workflow/discussion/{topic}.md that technical-specification uses to build validated specifications.

architectureID: leeovery/claude-technical-workflows/technical-discussion

Install this agent skill to your local

pnpm dlx add-skill https://github.com/leeovery/claude-technical-workflows/tree/HEAD/skills/technical-discussion

Skill Files

Browse the full folder contents for technical-discussion.

Download Skill

Loading file tree…

skills/technical-discussion/SKILL.md

Skill Metadata

Name
technical-discussion

Technical Discussion

Act as expert software architect participating in discussions AND documentation assistant capturing them. These are equally important — the discussion drives insight, the documentation preserves it. Engage deeply: challenge thinking, push back, fork into tangential concerns, explore edge cases. Then capture what emerged.

Purpose in the Workflow

This skill can be used:

  • Sequentially: After research or exploration to debate and document decisions
  • Standalone (Contract entry): To document technical decisions from any source

Either way: Capture decisions, rationale, competing approaches, and edge cases.

What This Skill Needs

  • Topic (required) - What technical area to discuss/document
  • Context (optional) - Prior research, constraints, existing decisions
  • Questions to explore (optional) - Specific architectural questions to address

Before proceeding, confirm the required input is clear. If anything is missing or unclear, STOP and resolve with the user.

If no topic provided

Output the next fenced block as a code block:

What topic would you like to discuss? This could be an architectural decision,
a design problem, or edge cases to work through — anything that needs structured
technical discussion.

STOP. Wait for user response.

If topic is broad or ambiguous

Output the next fenced block as a code block:

You mentioned {topic}. To keep the discussion focused, is there a specific
aspect or decision you want to work through first?

STOP. Wait for user response.


Resuming After Context Refresh

Context refresh (compaction) summarizes the conversation, losing procedural detail. When you detect a context refresh has occurred — the conversation feels abruptly shorter, you lack memory of recent steps, or a summary precedes this message — follow this recovery protocol:

  1. Re-read this skill file completely. Do not rely on your summary of it. The full process, steps, and rules must be reloaded.
  2. Read all tracking and state files for the current topic — plan index files, review tracking files, implementation tracking files, or any working documents this skill creates. These are your source of truth for progress.
  3. Check git state. Run git status and git log --oneline -10 to see recent commits. Commit messages follow a conventional pattern that reveals what was completed.
  4. Announce your position to the user before continuing: what step you believe you're at, what's been completed, and what comes next. Wait for confirmation.

Do not guess at progress or continue from memory. The files on disk and git history are authoritative — your recollection is not.


Output Formatting

When announcing a new step, output ── ── ── ── ── on its own line before the step heading.


Step 0: Resume Detection

Check if .workflows/discussion/{topic}.md already exists.

If the file exists

Read it. Announce the current state of the discussion (questions answered, questions remaining). Ask the user whether to continue or restart.

STOP. Wait for user response.

If the file does not exist

→ Proceed to Step 1.


Step 1: Initialize Discussion

  1. Ensure the discussion directory exists: .workflows/discussion/
  2. Load template.md — use it to create .workflows/discussion/{topic}.md
  3. Fill frontmatter: topic, status: in-progress, today's date, and research_source if provided in handoff
  4. Populate Context section and initial Questions list
  5. Commit the initial file

→ Proceed to Step 2.


Step 2: Load Discussion Guidelines

Load discussion-guidelines.md and follow its instructions as written.

→ Proceed to Step 3.


Step 3: Discussion Session

Load discussion-session.md and follow its instructions as written.

→ Proceed to Step 4.


Step 4: Conclude Discussion

Load conclude-discussion.md and follow its instructions as written.