claudehut-workflow

claudehut-workflow is a skill for Claude Code from taipt1504/claudehut. It costs 86 tokens per session (2,628 once invoked), scanned A, original, no licence file.

A seven-phase workflow for coding tasks in Java and Spring, a framework commonly used to build Java backends.

In plain words
What is it for?
Use it at the start of a session or Java/Spring backend task to route the work through the appropriate workflow.
Why use it?
It sets the required process and determines which planning steps and rules apply based on task size.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the claudehut plugin — 10 skills, 1 command, 16 agents, 11 hooks shipped together

Good fit Use it at the start of a session or Java/Spring backend task to route the work through the appropriate workflow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/taipt1504/claudehut/claudehut-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add taipt1504/claudehut --skill claudehut-workflow
Clone the repo
git clone --depth 1 https://github.com/taipt1504/claudehut

Made for: Claude Code.

Or install claudehut, the plugin that ships this one along with the rest of its 10 skills, 1 command, 16 agents, 11 hooks.

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 claudehut-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/taipt1504/claudehut/claudehut-workflow/github.svg)](https://agentmods.dev/skills/taipt1504/claudehut/claudehut-workflow)
Your own site
<a href="https://agentmods.dev/skills/taipt1504/claudehut/claudehut-workflow"><img src="https://agentmods.dev/badge/skills/taipt1504/claudehut/claudehut-workflow/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 claudehut-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/taipt1504/claudehut/claudehut-workflow"><img src="https://agentmods.dev/badge/skills/taipt1504/claudehut/claudehut-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,628 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 unknown 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.00086 $0.02628
Opus 5 $0.00043 $0.01314
Sonnet 5 $0.00017 $0.00526
Haiku 4.5 $0.00009 $0.00263

Measured 12d ago against content hash 7197dd925f71, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

claudehut-workflow 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 12d 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/claudehut-workflow/SKILL.md · 120 lines

The source is not reproduced here

A licence we could not identify

The repository carries a LICENSE file, but it is custom or dual enough that GitHub cannot name it and neither can this catalogue. Unknown terms are not permission, so the body is not copied here. Read the licence at the source and decide for yourself.

Read it on GitHub

Files

What ships with it

1 file 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. 12d ago First seen · 120 lines · 86 tokens per session scan A 7197dd925f71

Subscribe to this mod's changes

claudehut-workflow is a skill published in the GitHub repository taipt1504/claudehut (2 stars, last pushed 19d ago), with no licence file. It adds 86 tokens to every session and 2,628 once invoked, about $0.0004 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

spring-boot-patterns

Spring Boot patterns including stereotype annotations, dependency injection, profiles, configuration properties, and actuator endpoints. Use when the user is building Spring Boot applications, configuring dependency injection, setting up profiles for different environments, using @ConfigurationProperties, or enabling…

VersoXBT/claude-initial-setup · 83 tokens

async-fastapi

Build async FastAPI applications with async/await endpoints, background tasks, middleware, lifespan events, WebSockets, and streaming responses. Use when the user builds a FastAPI app, asks about async patterns, implements real-time features, or needs non-blocking I/O. Trigger when you see synchronous code in FastAPI…

VersoXBT/claude-initial-setup · 72 tokens

dependency-injection-fastapi

Implement FastAPI dependency injection with Depends(), security dependencies, database session management, request-scoped deps, and testing with overrides. Use when the user builds FastAPI endpoints, manages database connections, implements auth, or asks about dependency injection. Trigger when you see repeated setup…

VersoXBT/claude-initial-setup · 70 tokens

pydantic-validation

Validate data with Pydantic v2: BaseModel, Field validators, model validators, computed fields, discriminated unions, and custom types. Use when the user defines API schemas, validates input data, works with Pydantic models, or asks about data validation in Python. Trigger when you see dict-based data handling that…

VersoXBT/claude-initial-setup · 77 tokens

concurrency-patterns-go

Apply safe, idiomatic Go concurrency patterns with goroutines and channels. Use when the user works with goroutines, channels, sync primitives, context cancellation, worker pools, fan-in/fan-out, select statements, or asks about concurrent Go programming and avoiding race conditions.

VersoXBT/claude-initial-setup · 60 tokens

junit-testing

JUnit 5 testing patterns including annotations, Mockito mocking, Spring Boot test slices, MockMvc, Testcontainers integration, and parameterized tests. Use when the user is writing Java tests, setting up test infrastructure, mocking dependencies, testing Spring controllers, or running integration tests with real…

VersoXBT/claude-initial-setup · 86 tokens