一键导入
exeris-task-classifier
Router/Planner triage skill for Exeris Kernel. Classifies task type, scope, severity, and recommends primary agent based on primary risk.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Router/Planner triage skill for Exeris Kernel. Classifies task type, scope, severity, and recommends primary agent based on primary risk.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Architectural review for Exeris Kernel changes that touch module boundaries, SPI/Core/Community/Enterprise placement, dependency direction, provider wiring, or ADR-fixed structure. Use when a change adds or moves interfaces/providers, alters module layering, or risks a The-Wall breach (SPI implementation leak, Core driver leak). Not needed for pure intra-module edits with no boundary impact.
Java 26+ idiom review for Exeris Kernel. Use when a change touches concurrency, context propagation, native interop, memory APIs, or runtime data carriers — to enforce ScopedValue over ThreadLocal, StructuredTaskScope over ad-hoc async, Panama FFM (MemorySegment/Linker/SymbolLookup), Valhalla-ready immutable carriers, early construction, and removal of legacy framework idioms.
Performance-lawyer review enforcing No Waste Compute for Exeris Kernel. Use when a change touches runtime hot paths (transport, flow, memory, persistence, bootstrap, dispatch) or can affect allocations, structured concurrency, off-heap copies, or banned APIs (ThreadLocal, ExecutorService, CompletableFuture, ByteBuffer, Unsafe). Skip for docs-only or pure test/tooling changes.
Pre-PR gate for Exeris Kernel — run BEFORE opening or pushing any PR. Enforces lint-gate integrity (skip flags poison a green build's lint proof), the architecture guard test, fresh-branch-per-task discipline, and the register-ADR-before-claiming rule. Use whenever about to commit/push a branch or open a PR in the kernel repo.
Default entry-point for ANY Exeris Kernel PR/diff/branch review — start here. Triages software inflation, >5-dependency classes, and boundary/perf/contract risk, then dispatches to the focused lens skills (exeris-architect-guardrails, exeris-performance-contract, exeris-tck-first, exeris-jfr-telemetry-review, exeris-java26-panama-loom, exeris-subsystem-specialist) as the diff warrants. Trigger whenever asked to review, look at, audit, or assess a change.
Milestone release flow for Exeris Kernel — flip versions, write release notes, integrate development/X.Y.0 into main via a single release(x.y.z) PR, then open the next development line. Use when asked to prepare, cut, integrate, or finalize a milestone release, or to open the next development branch.
| name | exeris-task-classifier |
| description | Router/Planner triage skill for Exeris Kernel. Classifies task type, scope, severity, and recommends primary agent based on primary risk. |
| argument-hint | Task description + changed files/modules (if known) + expected outcome |
| user-invocable | true |
| disable-model-invocation | false |
Classify incoming work before execution starts.
This is a triage skill: it does not implement changes. It identifies task class, scope, and likely ownership.
Return exactly:
task_class (ARCHITECTURE | IMPLEMENTATION | CONTRACT_VERIFICATION | PERFORMANCE_REVIEW | DOCS_ADR | MULTI_DOMAIN)scope (single-module | cross-module | single-subsystem | cross-subsystem)severity (low | medium | high | critical)primary_riskrecommended_primary_agentARCHITECTURE: boundaries, module placement, dependency direction, ADR alignment.IMPLEMENTATION: code change with stable boundaries and contracts.CONTRACT_VERIFICATION: observable behavior or SPI/TCK-sensitive behavior.PERFORMANCE_REVIEW: hot-path allocation/copy/concurrency risks.DOCS_ADR: docs contract drift, ADR updates, subsystem doc synchronization.MULTI_DOMAIN: at least two classes above are first-order concerns.MULTI_DOMAIN and state both dominant concerns.docs/modules, docs/subsystems, then ADRs if needed).Classification is complete only if all five output fields are present and justified in 1-2 concise bullets.