feature-dev

feature-dev is a skill for Claude Code from ivanhoinacki/team-exp-claude-config. It costs 92 tokens per session (6,496 once invoked), scanned A, original, MIT.

A guided workflow for developing a software feature, from discovering the codebase and related knowledge to planning and implementing the change. It is intended for projects that use an Obsidian knowledge base alongside their code.

In plain words
What is it for?
Use it to start or plan a feature, implement a requested change, or work from a ticket while searching project documentation and relevant source code first.
Why use it?
It helps uncover existing patterns, utilities, and project rules before coding, reducing rework and conflicts with established behavior.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: model in frontmatter; mentions CLAUDE.md; positional $N argument.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is git worktree remove ../svc-experiences--exp3544.

Good fit Use it to start or plan a feature, implement a requested change, or work from a ticket while searching project documentation and relevant source code first.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ivanhoinacki/team-exp-claude-config
agentmods
npx agentmods add skills/ivanhoinacki/team-exp-claude-config/feature-dev

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feature-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/feature-dev/github.svg)](https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/feature-dev)
Your own site
<a href="https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/feature-dev"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/feature-dev/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feature-dev

Your own site · 80×15
<a href="https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/feature-dev"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/feature-dev.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,496 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.06496
Opus 5 $0.00046 $0.03248
Sonnet 5 $0.00018 $0.01299
Haiku 4.5 $0.00009 $0.00650

Measured 8d ago against content hash 425814ef169b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

feature-dev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/feature-dev/SKILL.md · 523 lines

How it starts

The opening of the file, as written. The whole thing — 523 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Phase 0: Vault RAG (MANDATORY, BEFORE any Read/Grep)

You MUST call query_vault(query, service_filter) BEFORE reading codebase files or external sources for any LE-related task. This is enforced by hook. No exceptions.


Feature Development, Discovery, Plan & Implementation

Working Directories

Always use these directories as primary sources for discovery, patterns, and implementation:

  1. Obsidian workspace (docs, plans, features): __VAULT_ROOT__
  2. Codebase (all LE services): __CODEBASE_ROOT__

Common Agent Mistakes

These mistakes have been observed across feature development sessions and led to rework, rejected PRs, or production issues.

  1. Skipping discovery: Jumping straight to coding without completing Phases 1-3. Why: discovery prevents rework. Past features that skipped it had 2-3 rework cycles when reviewers found existing utils or conflicting business rules.
  2. Creating new utils when one exists: Writing a new helper function without checking if the repo already has one. Why: a previous code review flagged this. Duplicate utils diverge over time and create maintenance burden.
  3. Ignoring existing patterns: Writing code that doesn't match the patterns in adjacent files. Read 2-3 files in the same directory before writing new code. Why: inconsistent patterns confuse future maintainers and trigger review comments.
  4. Not consulting pitfalls.md: The vault's pitfalls.md contains 66+ one-liner gotchas that prevent known bugs. Why: these pitfalls were each discovered the hard way. Checking takes 30 seconds, fixing the bug takes hours.
  5. Over-engineering: Adding abstractions, configurability, or "future-proofing" that wasn't requested. Why: the user explicitly wants minimal, focused changes. Over-engineering was flagged in multiple past PR reviews as scope creep.
  6. Missing test updates: Implementing a feature without updating or creating tests for the changed modules. Why: untested code is the #1 source of regressions and will be caught by /code-review anyway.
  7. Breaking the dependency chain: Not verifying that skill chain (feature-dev -> deslop -> code-review -> commit -> create-pr) is followed. Why: each step feeds the next. Skipping deslop means code-review finds AI slop instead of real issues.
  8. Wrong admin portal (www-ee-admin vs www-le-admin): Building a feature in the wrong admin project. www-le-admin = LE main admin (internal ops, content curation, attractions, experience management). www-ee-admin = White Label vendor/partner features. Why: EXP-3538 was built entirely in www-ee-admin, had to be redone. During discovery, always verify which portal matches the feature type.
  9. www-le-admin worktree missing public/ directory: After creating a worktree for www-le-admin, the public/ directory is missing (gitignored). Express BFF fails to serve pages. Fix: cp -r ../www-le-admin/public/ ./public/ after worktree creation. Why: EXP-3538 lost time debugging empty responses.
  10. Attempting to fix errors without checking KB first: When a build/test/runtime error occurs during implementation, immediately trying to fix it without running query_vault + grep pitfalls*.md. Why: the KB has documented fixes for dozens of errors. A 2-second vault check prevents 10-minute retry loops. MANDATORY: on ANY error, check vault BEFORE attempting fix (see 08-behavioral-standards.md rule 3).

Read the full file on GitHub · 523 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 523 lines · 92 tokens per session scan A 425814ef169b

Subscribe to this mod's changes

feature-dev is a skill published in the GitHub repository ivanhoinacki/team-exp-claude-config (2 stars, last pushed 1mo ago), licensed MIT. It adds 92 tokens to every session and 6,496 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

me-card

Render the user's saved /.me/ context as a single ASCII-art infographic card. Use when the user asks to "show my info", "print my card", "render my profile", "me card", "ascii infographic of my dot-me", or invokes the /me-card shortcut. Read-only — never writes to /.me/.

thebestmensch/dot-me · 76 tokens

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

apollo-lead-finder

Two-phase Apollo.io prospecting: free People Search to discover ICP-matching leads, then selective enrichment to reveal emails/phones (credits per contact). Creates Apollo lists. Deduplicates against existing contacts by LinkedIn URL.

gooseworks-ai/goose-skills · 51 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens

browse-and-evaluate

Use when exploring the ai-agent-skills catalog to find, compare, and evaluate skills before installing. Always use --fields to limit output size and --dry-run before committing to an install.

MoizIbnYousaf/Ai-Agent-Skills · 43 tokens

render-airdrop-carousel

Assemble a viral iOS "AirDrop" notification-carousel video ad (≈6–8s, 9:16) from a brand line plus 6–16 real product photos — a native AirDrop share-sheet card ("Brand would like to share a · Decline / Accept") springs up and its preview window CYCLES through the products, landing on a range/lineup payoff with an…

gooseworks-ai/goose-skills · 207 tokens