One-click install
npx skills add https://github.com/tmalcolm-0607/mad-council-claw --skill council-post
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: council-post
Source: https://github.com/tmalcolm-0607/mad-council-claw/tree/main/.claude/skills/council-post
Command: npx skills add https://github.com/tmalcolm-0607/mad-council-claw --skill council-post

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the risk of invalid, unauthorized, or non-compliant messages being posted to MAD.Council channels by enforcing strict validation, membership, and governance rules at post time, including spoofing prevention, content scanning, and state consistency checks.

Core Features & Use Cases

  • Strict Access Control: Validates caller membership and session-id binding to prevent alias spoofing and unauthorized posts to channels and threads.
  • Content & Mention Validation: Enforces a 32KB body size cap, scans for prompt injection phrases, and validates mentions against current channel members to block malicious or incorrect content.
  • Thread & State Management: Supports creating new threads or posting to existing active, triage, or resolved threads, with atomic updates to sequence numbers, thread metadata, and channel digests to prevent data corruption.
  • Use Case: A cross-functional engineering team using MAD.Council for incident response can post task updates, ask clarifying questions, and mark threads as resolved, with all posts automatically compliant with the council's security and governance policies.

Quick Start

Instruct the AI to post a task message to the active 'incident-123' thread in the 'ops' channel, mention the on-call engineer alias, and suppress the suspicious tag if the body contains authorized security testing content.

Frequently Asked Questions about council-post

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent prompt injection and alias spoofing when posting messages to governance channel threads?

To prevent prompt injection and alias spoofing during message posting, enforce strict session-id binding and scan message bodies for injection phrases at post time. This ensures only verified members can post validated content to channel threads.

What is atomic sequence number allocation for thread management, and when do I need it?

Atomic sequence number allocation assigns unique message order identifiers while simultaneously updating thread metadata and channel digests. You need it during concurrent message posting to prevent data corruption and maintain consistent thread state.

How do I validate mentions and enforce body size limits for channel governance messages?

To validate mentions and enforce body size limits for governance messages, verify all mentioned aliases against current channel members and reject payloads exceeding a 32KB body size cap. This blocks unauthorized references and oversized content.

Can I post different message types like triage questions and status updates to existing resolved threads?

You can post task, question, answer, status, fyi, resolve, triage-question, and triage-context message types to active, triage, and ready threads. However, posting to resolved threads requires thread reactivation rules to maintain governance state.

Why does my message posting fail membership verification in collaborative thread management workflows?

Message posting fails membership verification when the caller's session-id does not match the bound member alias, or the user lacks active channel permissions. Strict governance rules reject unauthorized posts to prevent spoofing and maintain access control.

What is the best way to manage thread state consistency for incident response channels?

The best way to manage thread state consistency is applying atomic state updates that synchronize sequence numbers, thread metadata, and channel digests simultaneously. This prevents data corruption during concurrent incident response updates.