/arn-code-swift
This skill should be used when the user says "swift", "arness code swift", "quick change", "small change", "just do this", "quick feature", "quick implementation", "swift fix", "implement this quickly", "add this quickly", "simple change", "just implement this",
$ npx -y skills add AppsVortex/arness --skill arn-code-swift --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-code-swift
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user says "swift", "arness code swift", "quick change", "small change", "just do this", "quick feature", "quick implementation", "swift fix", "implement this quickly", "add this quickly", "simple change", "just implement this",
SKILL.md
arn-code-swift.SKILL.mdname: arn-code-swift
description: >-
This skill should be used when the user says "swift", "arness code swift",
"quick change", "small change", "just do this", "quick feature",
"quick implementation", "swift fix", "implement this quickly",
"add this quickly", "simple change", "just implement this",
"arn-code-swift", "swift mode", "quick task",
or wants a lightweight, pattern-aware implementation for a small feature
or enhancement (1-8 files) without going through the full Arness pipeline.
Bridges the gap between raw Claude Code and the full feature-spec/plan
pipeline. Includes architectural assessment, targeted testing, and
pattern compliance review.
version: 1.1.0
Arness Swift
Implement small features and enhancements through a lightweight, pattern-aware workflow: quick architectural assessment, inline plan, direct execution, verification, and review -- all in a single session. Every swift implementation produces a plan (`SWIFT_<name>.md`) and a report (`SWIFT_REPORT.json`), giving the same auditability as the full pipeline without the overhead.
This skill follows the `arn-code-bug-spec` dual-path architecture: assess complexity, route simple tasks to direct execution, escalate moderate tasks to task-tracked execution, and redirect complex tasks to the full pipeline.
This is an execution skill. It runs in normal conversation (NOT plan mode).
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.
Pipeline Position
arn-code-swift (this skill)
========================
For changes touching 1-8 files
with no new architectural patterns
Entry: User describes a small change
|
v
Full: init --> [ feature-spec | bug-spec | SWIFT ] --> plan --> ...
|
+-------------------+-------------------+
| | |
SIMPLE MODERATE COMPLEX
(1-3 files) (4-8 files) (9+ files)
| | |
Plan --> Plan --> Redirect to
Execute TaskCreate --> /arn-code-feature-spec
in session Execute
| |
Review Review
| |
Ship ShipWorkflow
Step 1: Capture and Load Context
1. Accept the user's description. This can be anything from a sentence ("add rate limiting to /api/users") to detailed requirements. If the user already provided the description in their trigger message, use that directly without asking again.
2. Confirm understanding with a brief restatement (1-2 sentences).
3. Read the project's CLAUDE.md and extract the `## Arness` section to find:
- Code patterns path
- Plans directory
- Specs directory
- Template path
- Template version and Template updates preference (if present)
4. Load pattern documentation from the code patterns directory:
- `code-patterns.md` (required)
- `testing-patterns.md` (required)
- `architecture.md` (required)
- `ui-patterns.md` (if it exists)
- `security-patterns.md` (if it exists)
5. **If pattern documentation files are missing** (no `code-patterns.md`, `testing-patterns.md`, or `architecture.md` in the Code patterns directory):
Inform the user: "This is the first time pattern documentation is being generated for this project. Analyzing your codebase to understand its patterns, conventions, and architecture. This is a one-time operation — future invocations will use the cached results."
Then invoke the `arn-code-codebase-analyzer` agent (existing codebase) or `arn-code-pattern-architect` (greenfield) to generate fresh analysis. Write the results to the Code patterns directory.
Hold this context for use throughout the workflow.
---
Step 2: Quick Architectural Assessment
2a. Pre-check specialist relevance
Before invoking any agents, read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-ensure-config/references/specialist-pre-check.md` and apply the pre-check logic using the pattern documentation loaded in Step 1 and the user's feature description. This produces two boolean flags:
- `ui_involved`: true if ANY of: (1) `ui-patterns.md` exists AND contains a `## Sketch Strategy` section, (2) the feature description contains UI terms (component, page, form, button, layout, dashboard, UI, UX, screen, view, modal, dialog, command, terminal, output, widget, window, panel, console, display, prompt, menu, toolbar, status bar, progress, table, tree -- case-insensitive), (3) `architecture.md` contains a frontend, CLI, TUI, desktop, or mobile framework in its Technology Stack section
- `security_relevant`: true if BOTH: (1) `security-patterns.md` exists, AND (2) the feature description contains security terms (auth, login, password, token, payment, upload, API key, PII, encrypt, permission, session, cookie, CORS, CSRF, rate limit, secret, credential -- case-insensitive)
2b. Parallel agent dispatch
Dispatch the following agents in parallel based on the pre-check results:
- **Always:** `arn-code-architect`
- **If `ui_involved`:** also `arn-code-ux-specialist` (requires `ui-patterns.md` to exist)
- **If `security_relevant`:** also `arn-code-security-specialist` (requires `security-patterns.md` to exist)
All dispatched agents run in parallel (independent analyses, no cross-agent dependencies).
**For `arn-code-architect`, provide:**
**User expertise context:**
--- BEGIN USER EX
Read more
name: arn-code-swift description: >- This skill should be used when the user says "swift", "arness code swift", "quick change", "small change", "just do this", "quick feature", "quick implementation", "swift fix", "implement this quickly", "add this quickly", "simple change", "just implement this", "arn-code-swift", "swift mode", "quick task", or wants a lightweight, pattern-aware implementation for a small feature or enhancement (1-8 files) without going through the full Arness pipeline. Bridges the gap between raw Claude Code and the full feature-spec/plan pipeline. Includes architectural assessment, targeted testing, and pattern compliance review. version: 1.1.0
Arness Swift
Implement small features and enhancements through a lightweight, pattern-aware workflow: quick architectural assessment, inline plan, direct execution, verification, and review -- all in a single session. Every swift implementation produces a plan (`SWIFT_<name>.md`) and a report (`SWIFT_REPORT.json`), giving the same auditability as the full pipeline without the overhead.
This skill follows the `arn-code-bug-spec` dual-path architecture: assess complexity, route simple tasks to direct execution, escalate moderate tasks to task-tracked execution, and redirect complex tasks to the full pipeline.
This is an execution skill. It runs in normal conversation (NOT plan mode).
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.
Pipeline Position
arn-code-swift (this skill)
========================
For changes touching 1-8 files
with no new architectural patterns
Entry: User describes a small change
|
v
Full: init --> [ feature-spec | bug-spec | SWIFT ] --> plan --> ...
|
+-------------------+-------------------+
| | |
SIMPLE MODERATE COMPLEX
(1-3 files) (4-8 files) (9+ files)
| | |
Plan --> Plan --> Redirect to
Execute TaskCreate --> /arn-code-feature-spec
in session Execute
| |
Review Review
| |
Ship ShipWorkflow
Step 1: Capture and Load Context
1. Accept the user's description. This can be anything from a sentence ("add rate limiting to /api/users") to detailed requirements. If the user already provided the description in their trigger message, use that directly without asking again.
2. Confirm understanding with a brief restatement (1-2 sentences).
3. Read the project's CLAUDE.md and extract the `## Arness` section to find:
- Code patterns path
- Plans directory
- Specs directory
- Template path
- Template version and Template updates preference (if present)
4. Load pattern documentation from the code patterns directory:
- `code-patterns.md` (required)
- `testing-patterns.md` (required)
- `architecture.md` (required)
- `ui-patterns.md` (if it exists)
- `security-patterns.md` (if it exists)
5. **If pattern documentation files are missing** (no `code-patterns.md`, `testing-patterns.md`, or `architecture.md` in the Code patterns directory):
Inform the user: "This is the first time pattern documentation is being generated for this project. Analyzing your codebase to understand its patterns, conventions, and architecture. This is a one-time operation — future invocations will use the cached results."
Then invoke the `arn-code-codebase-analyzer` agent (existing codebase) or `arn-code-pattern-architect` (greenfield) to generate fresh analysis. Write the results to the Code patterns directory.
Hold this context for use throughout the workflow.
---
Step 2: Quick Architectural Assessment
2a. Pre-check specialist relevance
Before invoking any agents, read `${CLAUDE_PLUGIN_ROOT}/skills/arn-code-ensure-config/references/specialist-pre-check.md` and apply the pre-check logic using the pattern documentation loaded in Step 1 and the user's feature description. This produces two boolean flags:
- `ui_involved`: true if ANY of: (1) `ui-patterns.md` exists AND contains a `## Sketch Strategy` section, (2) the feature description contains UI terms (component, page, form, button, layout, dashboard, UI, UX, screen, view, modal, dialog, command, terminal, output, widget, window, panel, console, display, prompt, menu, toolbar, status bar, progress, table, tree -- case-insensitive), (3) `architecture.md` contains a frontend, CLI, TUI, desktop, or mobile framework in its Technology Stack section
- `security_relevant`: true if BOTH: (1) `security-patterns.md` exists, AND (2) the feature description contains security terms (auth, login, password, token, payment, upload, API key, PII, encrypt, permission, session, cookie, CORS, CSRF, rate limit, secret, credential -- case-insensitive)
2b. Parallel agent dispatch
Dispatch the following agents in parallel based on the pre-check results:
- **Always:** `arn-code-architect`
- **If `ui_involved`:** also `arn-code-ux-specialist` (requires `ui-patterns.md` to exist)
- **If `security_relevant`:** also `arn-code-security-specialist` (requires `security-patterns.md` to exist)
All dispatched agents run in parallel (independent analyses, no cross-agent dependencies).
**For `arn-code-architect`, provide:**
**User expertise context:**
--- BEGIN USER EX
Showing the first part of this file.
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-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",
Open skill - /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

