/arn-assessing
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "pattern compliance check", "codebase health check",
$ npx -y skills add AppsVortex/arness --skill arn-assessing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/arn-assessing
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "pattern compliance check", "codebase health check",
SKILL.md
arn-assessing.SKILL.mdname: arn-assessing
description: >-
This skill should be used when the user says "assessing", "arness assessing",
"assess", "assess codebase", "technical review", "codebase assessment",
"find improvements", "what should I improve", "tech debt review",
"pattern compliance check", "codebase health check", "improvement plan",
"review my codebase", "what needs fixing", "code quality check",
"audit my code", "run an assessment", "arn-assessing",
or wants a comprehensive technical assessment of the codebase against
stored patterns followed by prioritized improvement execution.
Chains to arn-implementing if improvements are identified.
version: 1.0.0
Arness Assessing
Comprehensive technical assessment of the codebase against stored patterns, followed by prioritized improvement identification. This is a first-citizen entry point that wraps `arn-code-assess` with a pre-flight check and provides chaining context to `arn-implementing`.
This skill is a **medium orchestration wrapper**. It MUST NOT duplicate `arn-code-assess` logic. All assessment work is done by the invoked skill (which has its own 7 internal gates). Arness-assessing handles: prerequisite checks, pre-flight validation, invoking the assess skill, and offering the chain exit.
Step 0: Ensure Configuration
Read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-ensure-config/references/step-0-fast-path.md` and follow its instructions. This guarantees a user profile exists and `## Arness` is configured with Arness Code fields before proceeding.
After Step 0 completes, extract the following from `## Arness`:
- **Code patterns** — path to the directory containing stored pattern documentation
Workflow
Step 1: Pre-flight Check
Verify that pattern documentation exists at the configured Code patterns path:
- `<code-patterns-dir>/code-patterns.md`
- `<code-patterns-dir>/testing-patterns.md`
- `<code-patterns-dir>/architecture.md`
**If any are missing:** inform the user: "Pattern documentation is incomplete. The assessment needs stored patterns to compare against. Run `/arn-planning` first — it will generate pattern docs on first use." Do not proceed.
**If all exist:** inform the user briefly: "Pattern documentation found. Starting assessment..."
---
Step 2: Invoke Assess
Show progress:
Assessing: PRE-FLIGHT -> ASSESSMENT (scope -> analyze -> prioritize -> spec -> plan -> execute -> ship -> update-patterns)
^^^^^^^^^^Invoke the assess skill:
> `Skill: arn-code:arn-code-assess`
The assess skill has its own 7 internal decision gates (scope selection, improvement selection, spec review, execution mode, etc.) and manages its own complete pipeline internally. Wait for it to complete.
---
Step 3: Completion Handoff
After `arn-code-assess` completes, offer the chain exit:
Ask (using `AskUserQuestion`):
**"Assessment complete. What next?"**
Options: 1. **Implement improvements** — Start implementing the identified fixes and improvements 2. **Done** — Exit
If **Implement improvements**: `Skill: arn-code:arn-implementing` If **Done**: Exit.
---
Error Handling
- **`## Arness` config missing:** Handled by Step 0 (ensure-config) — this should not occur if Step 0 completed successfully.
- **Pattern docs missing:** Block with pre-flight message. Suggest running `/arn-planning` which will generate pattern docs on first use.
- **`arn-code-assess` fails:** Present the error. Ask: retry or abort.
- **Assessment finds no improvements:** Exit with "Codebase is healthy — no improvements needed." Do not offer implementing chain.
Read more
name: arn-assessing description: >- This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "pattern compliance check", "codebase health check", "improvement plan", "review my codebase", "what needs fixing", "code quality check", "audit my code", "run an assessment", "arn-assessing", or wants a comprehensive technical assessment of the codebase against stored patterns followed by prioritized improvement execution. Chains to arn-implementing if improvements are identified. version: 1.0.0
Arness Assessing
Comprehensive technical assessment of the codebase against stored patterns, followed by prioritized improvement identification. This is a first-citizen entry point that wraps `arn-code-assess` with a pre-flight check and provides chaining context to `arn-implementing`.
This skill is a **medium orchestration wrapper**. It MUST NOT duplicate `arn-code-assess` logic. All assessment work is done by the invoked skill (which has its own 7 internal gates). Arness-assessing handles: prerequisite checks, pre-flight validation, invoking the assess skill, and offering the chain exit.
Step 0: Ensure Configuration
Read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-ensure-config/references/step-0-fast-path.md` and follow its instructions. This guarantees a user profile exists and `## Arness` is configured with Arness Code fields before proceeding.
After Step 0 completes, extract the following from `## Arness`:
- **Code patterns** — path to the directory containing stored pattern documentation
Workflow
Step 1: Pre-flight Check
Verify that pattern documentation exists at the configured Code patterns path:
- `<code-patterns-dir>/code-patterns.md`
- `<code-patterns-dir>/testing-patterns.md`
- `<code-patterns-dir>/architecture.md`
**If any are missing:** inform the user: "Pattern documentation is incomplete. The assessment needs stored patterns to compare against. Run `/arn-planning` first — it will generate pattern docs on first use." Do not proceed.
**If all exist:** inform the user briefly: "Pattern documentation found. Starting assessment..."
---
Step 2: Invoke Assess
Show progress:
Assessing: PRE-FLIGHT -> ASSESSMENT (scope -> analyze -> prioritize -> spec -> plan -> execute -> ship -> update-patterns)
^^^^^^^^^^Invoke the assess skill:
> `Skill: arn-code:arn-code-assess`
The assess skill has its own 7 internal decision gates (scope selection, improvement selection, spec review, execution mode, etc.) and manages its own complete pipeline internally. Wait for it to complete.
---
Step 3: Completion Handoff
After `arn-code-assess` completes, offer the chain exit:
Ask (using `AskUserQuestion`):
**"Assessment complete. What next?"**
Options: 1. **Implement improvements** — Start implementing the identified fixes and improvements 2. **Done** — Exit
If **Implement improvements**: `Skill: arn-code:arn-implementing` If **Done**: Exit.
---
Error Handling
- **`## Arness` config missing:** Handled by Step 0 (ensure-config) — this should not occur if Step 0 completed successfully.
- **Pattern docs missing:** Block with pre-flight message. Suggest running `/arn-planning` which will generate pattern docs on first use.
- **`arn-code-assess` fails:** Present the error. Ask: retry or abort.
- **Assessment finds no improvements:** Exit with "Codebase is healthy — no improvements needed." Do not offer implementing chain.
Arness — H not required. Structured AI workflows for Claude Code. From first idea to production deploy. Seven entry commands. That's all you need to remember.
Repo: AppsVortex/arness
Other skills on arness.
- /arn-code-assess
This skill should be used when the user says "arness code assess", "arn-code-assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "tech debt audit", "pattern compliance check", "codebase health
Open skill - /arn-code-batch-cve-fix
This skill should be used when the user says "fix CVEs", "patch vulnerabilities", "apply security patches", "resolve security advisories", "batch CVE fix", "patch dependencies", "fix security findings", "remediate CVEs", "apply CVE fixes", "batch fix vulnerabilities", "resolve
Open skill - /arn-code-batch-cve-scan
This skill should be used when the user says "scan for CVEs", "CVE scan", "check for vulnerabilities", "find vulnerabilities", "check security advisories", "dependabot triage", "dependabot scan", "scan dependencies for security issues", "audit dependencies", "vulnerability
Open skill - /arn-code-batch-implement
This skill should be used when the user says "batch implement", "implement all", "batch execution", "implement all features", "parallel implement", "implement in parallel", "arness batch implement", "arn-code-batch-implement", "run batch implementation", "implement everything",
Open skill - /arn-code-batch-merge
This skill should be used when the user says "batch merge", "merge batch", "arness batch merge", "arn-code-batch-merge", "merge all PRs", "merge batch PRs", "merge the batch", "merge implemented features", "batch merge PRs", "merge open PRs", "merge all feature PRs", "combine
Open skill - /arn-code-batch-planning
This skill should be used when the user says "batch planning", "batch plan", "arness batch planning", "arn-code-batch-planning", "plan multiple features", "plan all features", "plan unblocked features", "plan the backlog", "plan from backlog", "batch spec and plan", "plan next
Open skill

