AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Start

skill-phileggel-claude-kit-start · by phileggel

Use at the start of a new task to lock in workflow (Full vs Simple), create a feature branch, and emit the session's working context. Invoked as `/start [fix|chore|test|feature|refactor]` where the scope argument pre-selects a workflow. Not for mid-session triage of in-flight work — use `whats-next` instead.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-phileggel-claude-kit-start

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-phileggel-claude-kit-start)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Start? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill — start

Invocation: /start [fix|chore|test|feature|refactor]


Required tools

AskUserQuestion, Bash.


When to use

  • At the start of a new task — before any code is written, to lock in workflow + branch + working context
  • When picking up a fresh feature or fix — establishes the session contract the main agent will follow
  • When the scope is known up front — pass it as the argument (/start fix) to skip one prompt

Not for mid-session triage of in-flight work — use /whats-next instead. Not for exploring what the kit ships — use /kit-discover instead.


Critical Rules

  • Never proceed on main. Step 3 enforces a feature branch before the working context is emitted; the rest of the workflow assumes branch scope.
  • The Working Context block is the session contract. Once emitted, the main agent treats it as the authoritative checklist for the rest of the session — do not silently deviate.
  • Workflow switching is always allowed. The scope-suggested workflow in Step 1 is a default, not a lock; the user can override at Q2 or any later point.

Execution Steps

Step 1 — Determine workflow suggestion from scope

| Scope | Suggestion | | ---------- | ------------------------- | | feature | A — Full Feature Workflow | | refactor | ask — could go either way | | fix | B — Simple Workflow | | chore | B — Simple Workflow | | test | B — Simple Workflow | | (none) | ask |

If the scope argument is not in the table above (e.g. /start hotfix), treat it as (none) and fall through to ask. Do not reject the invocation.

Step 2 — Ask the user

Use AskUserQuestion to collect two things in one call:

Q1 — Task description: "What needs to be done?" (one sentence, free text)

Q2 — Workflow: show both options; pre-select the suggested one (mark as Recommended if a suggestion exists):

  • A — Full workflow — new feature, business logic, contract changes, significant refactor
  • B — Simple workflow — bug fix, chore, tests, maintenance, no new business rules

If the user cancels Q1 or Q2, abort the skill — do not emit a partial Working Context.

Step 3 — Check branch before outputting context

Before outputting anything, run git branch --show-current to check the current branch.

  • If on main: use AskUserQuestion to ask for a branch name, then validate it matches ^(feat|fix|chore|test|refactor|docs|ci)/[a-z0-9][a-z0-9-]*$ before running git checkout -b {branch}. If validation fails, ask again. Do not proceed until the branch is created.
  • If already on a feature branch: proceed.

Step 4 — Output working context

Emit the working context per the Output format section below, immediately after the branch check. This block is the main agent's session contract — Step 5 then mirrors it into the task tracker.

Step 5 — Set up task tracking

After emitting the Working Context, immediately call TaskCreate once per checklist item in the template (every - [ ] line). Mark the first task in_progress BEFORE invoking the first checklist item.

The checklist in the Working Context is a contract surface for the user; the TaskCreate entries are the agent's progress tracker for the harness. They serve different audiences — both are required, not interchangeable.


Output format

Pick the template matching the chosen workflow. Replace {task} with the user's description, {type} with the scope argument or unspecified, and {branch} with the current branch name from git branch --show-current.

If Workflow A:

## Working Context

**Task**: {task}
**Type**: {type}
**Branch**: {branch}
**Workflow**: A — Full Feature Workflow

> Use `TaskCreate` / `TaskUpdate` throughout to track progress.
> Create one `TaskCreate` entry per checklist item below NOW, before executing the first item.

### Phase 1 — Spec & Contract & Plan _(main agent: opus)_
- [ ] `/spec-writer` → `docs/spec/{feature}.md`
- [ ] `/contract` → `docs/contracts/{domain}-contract.md` [human approves shape]
- [ ] Run `spec-reviewer` + `contract-reviewer` in parallel (one Agent batch) [soft gate — hard if 🔴]
- [ ] `/feature-planner` → `docs/plan/{feature}-plan.md`
- [ ] `plan-reviewer` → validate plan vs spec + contract [soft gate — hard if 🔴]
- [ ] **🔀 Switch model** — use **AskUserQuestion** to pause and ask the user to run `/model sonnet` before Phase 2. Phases 2–3 are mechanical execution against locked artifacts; sonnet is the right model. Do NOT proceed until the user confirms the switch is done. Switch back to `opus` later only if a reviewer surfaces a design-level finding that requires re-planning.

### Phase 2 — Backend _(main agent: sonnet)_
- [ ] Database migration (`just migrate` + `just prepare-sqlx`) _(if schema changes per plan)_
- [ ] `test-writer-backend` → Rust stubs from contract, confirm red
- [ ] Implement backend (make tests green)
- [ ] Run `reviewer-backend` + `reviewer-arch` _(if any `.rs` modified)_ + `reviewer-sql` _(if migrations)_ in parallel → `/review-triage` → apply Follow-ups; halt for user on any (b)/(c) row
- [ ] `just generate-types` → updates `src/bindings.ts`
- [ ] Run `npx tsc --noEmit` → fix TS errors from new bindings only (no UI work)
- [ ] `just format`
- [ ] `/smart-commit`: backend layer [HARD GATE]
- [ ] `/create-pr` if the **PR Plan** section of `docs/plan/{feature}-plan.md` slices BE into its own PR; otherwise continue. After merge, branch the next phase off updated `main`.

### Phase 3 — Frontend _(main agent: sonnet)_
- [ ] `test-writer-frontend` → Vitest stubs from contract (reads fresh bindings), confirm red
- [ ] Implement frontend (make tests green)
- [ ] `/visual-proof` → capture final state; stage screenshots before commit _(if .tsx/.css changed)_
- [ ] `reviewer-frontend` → `/review-triage` → apply Follow-ups; halt for user on any (b)/(c) row
- [ ] `just format`
- [ ] `/smart-commit`: frontend layer [HARD GATE]
- [ ] `/create-pr` if the **PR Plan** slices FE into its own PR; otherwise continue. After merge, branch the next phase off updated `main`.

### Phase 4 — Review & Closure _(main agent: sonnet — switch back to opus only if a reviewer surfaces a design-level finding)_
- [ ] `test-writer-e2e` → produces pyramid-friendly E2E scenarios from contract (run `/setup-e2e` first if not done)
- [ ] Run `npm run test:e2e` → green confirmed (main agent triages any failure)
- [ ] Run applicable reviewers in parallel (one Agent batch):
      - `reviewer-e2e` _(reviews E2E test files)_
      - `reviewer-infra` _(if any config, script, hook, or workflow file changed)_
      - `reviewer-security` _(if Tauri command, capability, or security-sensitive file modified)_
- [ ] `/review-triage` → triage all Phase 4 batch findings; apply Follow-ups; halt for user on any (b)/(c) row
- [ ] Documentation Update — `docs/todo.md` (always: close shipped entries, surface follow-ups); `ARCHITECTURE.md` _(only if a new module/path, new layer pattern, or new cross-layer abstraction was introduced)_
- [ ] `spec-checker` → all rules and contract commands covered [HARD GATE — halt and surface any uncovered items to the user before proceeding]
- [ ] `just format`
- [ ] `/smart-commit`: closure [HARD GATE]
- [ ] `/create-pr` → final PR per the **PR Plan** (or merge directly: `git checkout main && git merge --no-ff feat/{name}`)

> Reading the PR Plan: after /feature-planner writes docs/plan/{feature}-plan.md, open it and locate the PR Plan section. The strategy (1 PR / 2 PRs / 3 PRs) tells you which /create-pr checkpoints above are active. Default behaviour when the section is absent: single /create-pr at the end of Phase 4.


If Workflow B:

## Working Context

**Task**: {task}
**Type**: {type}
**Branch**: {branch}
**Workflow**: B — Simple Technical Workflow

### Steps

> Use `TaskCreate` / `TaskUpdate` throughout to track progress.
> Create one `TaskCreate` entry per checklist item below NOW, before executing the first item.

- [ ] Analyze: read relevant docs and code
- [ ] Propose plan in chat → wait for user validation
- [ ] Implement changes (write missing regression tests for any modified behavior)
- [ ] Run applicable reviewers in parallel (one Agent batch):
      - `reviewer-backend` _(if any `.rs` modified)_
      - `reviewer-frontend` _(if any `.ts`/`.tsx` modified)_
      - `reviewer-arch` _(if any `.rs` — skip on docs-only or config-only fixes)_
      - `reviewer-sql` _(if migrations)_
      - `reviewer-infra` _(if scripts, hooks, config, or workflow files changed)_
      - `reviewer-security` _(if Tauri command, capability, or security-sensitive file modified)_
- [ ] `/review-triage` → triage findings; halt for user on any (b)/(c) row
- [ ] Apply review fixes per `/review-triage` Follow-ups _(skip if no findings)_
- [ ] Update `docs/todo.md` _(if a TODO entry was resolved)_
- [ ] `just format`
- [ ] `/smart-commit` [HARD GATE]
- [ ] Ask user: merge directly (`git checkout main && git merge --ff-only fix/{name} && git push`) or `/create-pr`

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.