Agent skill
context-a8c-mcporter
Use when accessing Automattic work context (Linear, Slack, P2s, Zendesk, TeamCity, etc.). Triggers include questions about issues, messages, posts, tickets, builds, or any Automattic internal systems.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/context-a8c-mcporter
SKILL.md
Context A8C via mcporter
Access Automattic work context using mcporter CLI.
Discovery
First, discover available providers and their descriptions:
mcporter list context-a8c
This returns the full tool schema including:
- Available providers (in the
providerenum) - What each provider does (in the description)
- Required and optional parameters
Read this output carefully - it tells you exactly which providers exist and when to use each one.
Two-Step Pattern
Context-a8c uses a load-then-execute pattern:
Step 1: Load Provider
mcporter call context-a8c.context-a8c-load-provider provider=<provider>
This returns the available tools for that provider and their parameters.
Step 2: Execute Tool
mcporter call 'context-a8c.context-a8c-execute-tool(provider: "linear", tool: "issue", params: {"id":"SQUARE-215"})'
Params are optional; omit params entirely for tools without arguments:
mcporter call 'context-a8c.context-a8c-execute-tool(provider: "linear", tool: "me")'
The params argument must be an object (not a JSON string). Wrap the whole call in single quotes to avoid shell parsing issues.
Workflow
- Run
mcporter list context-a8cto see available providers - Load the relevant provider to discover its tools
- Execute the specific tool with appropriate params
- Parse JSON results
End-to-End Example (Linear Issue)
mcporter list context-a8c
mcporter call context-a8c.context-a8c-load-provider provider=linear
mcporter call 'context-a8c.context-a8c-execute-tool(provider: "linear", tool: "issue", params: {"id":"SQUARE-215"})'
Common Errors
tool is a required property of input→ includetool: "<tool>"in the execute call.provider is a required property of input→ includeprovider: "<provider>"in the execute call.input[params] is not of type object→ pass an object, not a quoted JSON string.
Notes
- Always load a provider first to see exact tool names and parameters
- The
paramsargument must be valid JSON when provided - Auth is handled automatically; if it fails, direct user to
/ai/context-a8con Matticspace
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?