Plugin Claude Code
Plugin marketplace listing 1 plugin: kenspc.
Plugin Claude Code
Plugin marketplace listing 1 plugin: kenspc.
Instructions file
Claude Code instructions for kenspc/kenspc-claude-plugin, covering claude.md, project overview, marketplace structure, plugin directory layout and skill development conventions.
Plugin Claude Code
Structured software development workflows for Claude Code, aligned with Opus 4.8 at xhigh/max effort. Eleven reusable subagents drive brief generation, plan generation, task decomposition, automated batch implementation, and multi-angle parallel review. v3 follows five design rules: workflow SOP stays, business rules…
Agent
Reviews code with skeptical bug-hunting mindset: off-by-one errors, null references, async correctness, race conditions, query correctness, type safety. Used by /kenspc-task-review parallel review (Angle 4); also safe to invoke standalone with a project context.
Agent
INTERNAL: Part of /kenspc-task-review orchestration. Requires REVIEWREPORTS structured CONTEXT input from the calling skill — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
Reviews code for edge cases and error handling: null/empty/boundary values, error propagation, resource cleanup, server-side validation. Used by /kenspc-task-review parallel review (Angle 2); also safe to invoke standalone with a project context.
Agent
INTERNAL: Part of /kenspc-guide generation orchestration. Requires GUIDEPATH from a freshly generated guide document — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
INTERNAL: Part of /kenspc-plan generation orchestration. Requires PLANPATH from a freshly generated plan document — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
Reviews code quality: project conventions, readability, maintainability, naming, and structural issues. Used by /kenspc-task-review parallel review (Angle 3); also safe to invoke standalone with a project context.
Agent
INTERNAL: Part of /kenspc-task-review orchestration. Requires REVIEWREPORTS and ACCOUNTABILITYLIST CONTEXT — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
Reviews code completeness against requirements: are all required changes implemented, are there partially implemented features, do interfaces match design. Used by /kenspc-task-review parallel review (Angle 1); also safe to invoke standalone with a project context.
Agent
INTERNAL: Part of /kenspc-task generation orchestration. Requires TASKDOCPATH and SOURCEPATH from a freshly generated task document — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
INTERNAL: Part of /kenspc-task-implement orchestration. Requires validated task document path — standalone invocation will fail the prerequisite check. Do not auto-delegate.
Agent
Reviews test coverage and test quality: happy/edge/error path coverage, test correctness, behavior-not-implementation testing. Used by /kenspc-task-review parallel review (Angle 5); also safe to invoke standalone with a project context.
Command
Explicit entry point for the generate-brief skill — produce a requirement brief (需求摘要) via structured discovery.
Command
Explicit entry point for the generate-guide skill — generate a project setup and deployment guide (项目指南) with self-review.
Command
Explicit entry point for the generate-plan skill — generate a plan document (计划书) with discovery, self-challenge, and review.
Command
Explicit entry point for the task-implement skill — automated batch implementation (自动实现任务) with auto-review.
Command
Explicit entry point for the task-review skill — multi-angle code review (代码审查) with fix and regression verification.
Command
Explicit entry point for the generate-task skill — decompose a plan document into a fine-grained task document (任务分解).
Hook
Runs before the agent uses a tool for Write tool calls, executing remind-plan-skill.sh via bash. From kenspc/kenspc-claude-plugin.
Hook
Runs when a session ends, executing session-end-telemetry.sh via bash. From kenspc/kenspc-claude-plugin.
Skill Claude CodeCodex
Structured discovery conversation that produces a requirement brief (需求摘要). Use when the idea is too vague to plan directly, when you need to think through an idea before committing, or when you need a shareable document before planning. Not for creating plans — use generate-plan instead. Trigger on: "help me think…
Skill Claude CodeCodex
Generate a beginner-friendly project setup and deployment guide (项目指南/ 部署文档/新人文档) for a project or monorepo sub-app. Reads the actual codebase to produce accurate setup steps, then self-reviews against the code via review agent. Trigger on: "write a guide", "setup doc", "deployment guide", "onboarding doc", "写文档"…