assess

Solid

Assesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.

AI & Automation 208 stars 20 forks Updated today MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
77
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Assess Comprehensive assessment skill for answering "is this good?" with structured evaluation, scoring, and actionable recommendations. ## ๐ŸŽฏ Quick Start ```bash /ork:assess backend/app/services/auth.py /ork:assess our caching strategy /ork:assess --model=opus the current database schema /ork:assess frontend/src/components/Dashboard ``` ### Effort levels (CC 2.1.111+ adds `xhigh`) | Effort | Behavior | |---|---| | `low` / `medium` | Subset of dimensions, faster turnaround | | `high` (default) | All six dimensions with pros/cons | | `xhigh` (Opus 4.8) | All six dimensions + one additional assessor pass focused on uncertainty/caveats; emits `confidence` per dimension | > `xhigh` silently falls back to `high` on models that don't support it (Opus 4.8 does). `/ork:doctor` warns when `xhigh` is used without Opus 4.8. --- ## Argument Resolution ```python TARGET = "$ARGUMENTS" # Full argument string, e.g., "backend/app/services/auth.py" # $ARGUMENTS[0] is the first token (CC 2.1.59 indexed access) # Model override detection (CC 2.1.72) MODEL_OVERRIDE = None for token in "$ARGUMENTS".split(): if token.startswith("--model="): MODEL_OVERRIDE = token.split("=", 1)[1] # "opus", "sonnet", "haiku", "fable" TARGET = TARGET.replace(token, "").strip() ``` Pass `MODEL_OVERRIDE` to all Agent() calls via `model=MODEL_OVERRIDE` when set. Accepts symbolic names (`opus`, `sonnet`, `haiku`, `fable` on harnesses whose Agent tool lists it; note fable is premium API ...

Details

Author
yonatangross
Repository
yonatangross/orchestkit
Created
6 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content โ€” not just same category

AI & Automation Solid

insight-assess

Structured decision evaluation โ€” pros/cons, impact assessment, quality analysis, recommendation. Trigger when the user runs /assess or asks for evaluation, comparison, or impact analysis of an approach, decision, option, or implementation. Use insight-explore for divergent option generation, insight-critique for focused output review, and insight-adversarial for multi-POV stress testing.

0 Updated today
allemaar
AI & Automation Listed

assessing-quality

Conducts quality reviews of non-code artefacts. Use when reviewing or critiquing Skills, agents, workflows, documentation, or written materials, assessing quality against standards, or providing structured feedback.

8 Updated 1 weeks ago
isvlasov
AI & Automation Listed

ai-readiness-assessment

Run a self-contained AI literacy / AI readiness assessment for the current repository. Use when the user asks to "assess AI readiness", "run an AI readiness assessment", "check our AI literacy level", "where are we on the AI collaboration framework", "evaluate how we work with AI", "score our AI maturity", "check our habitat maturity", or any request to place the team on the Agentic Experience 5-Level Habitat Maturity Model (14 dimensions, L1โ€“L5) and the Sovereign Engineer six-level cognitive ladder (L0โ€“L5) across context engineering, architectural constraints, and guardrail design. Produces a timestamped assessment, a gap-anchored reading path through *The Sovereign Engineer*, and a single TechTalk engagement recommendation. Also surfaced via the `/ai-readiness-assess` slash command.

6 Updated 1 weeks ago
techtalk