core-builder

core-builder is a skill for Claude Code, Codex from nlinhvu/learn-java-frameworks-marketplace. It costs 120 tokens per session (3,704 once invoked), scanned A, original, Apache-2.0.

A feature-building tool for a core-first Java learning project. It takes the next feature from a core outline, writes simplified Java code, and adds tests and a tutorial based on the code.

In plain words
What is it for?
Use it to implement features from a core outline in projects originally written in languages such as Python, Go, Rust, Node.js, C#, Ruby, or Java. It produces source code in `src/`, tests, and tutorial chapters with diagrams and explanatory notes.
Why use it?
It connects each new feature to the exact place where it belongs in the existing system. The tutorial explains the implementation and language translation without becoming separate from the actual source code.

Skill for Claude CodeCodex

Part of the core-learning plugin — 2 skills, 3 agents shipped together

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.

agentmods
npx agentmods add skills/nlinhvu/learn-java-frameworks-marketplace/core-builder
Any agent
npx skills add nlinhvu/learn-java-frameworks-marketplace --skill core-builder
Clone the repo
git clone --depth 1 https://github.com/nlinhvu/learn-java-frameworks-marketplace

Made for: Claude Code, Codex.

Or install core-learning, the plugin that ships this one along with the rest of its 2 skills, 3 agents.

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 core-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/nlinhvu/learn-java-frameworks-marketplace/core-builder.svg)](https://agentmods.dev/skills/nlinhvu/learn-java-frameworks-marketplace/core-builder)
Your own site
<a href="https://agentmods.dev/skills/nlinhvu/learn-java-frameworks-marketplace/core-builder"><img src="https://agentmods.dev/badge/skills/nlinhvu/learn-java-frameworks-marketplace/core-builder.svg" alt="Measured on agentmods" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,704 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00120 $0.03704
Opus 5 $0.00060 $0.01852
Sonnet 5 $0.00024 $0.00741
Haiku 4.5 $0.00012 $0.00370

Measured 4d ago against content hash eb95fa4c7d35, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

core-builder 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 4d 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.

plugins/core-learning/skills/core-builder/SKILL.md · 307 lines

How it starts

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

Core Builder — Feature Implementation

Philosophy: Integration Point First, Then Build Outward

Each feature starts at its integration point — the exact place where the new feature connects to the existing system. The source project may be in any language (Python, Go, Rust, Node.js, C#, Ruby, Java, etc.) — the output is always simplified Java. The implementation follows the same direction a contributor would: "I see where this feature plugs in, I want to understand what supporting code makes it work, so I trace outward from the integration point."

This produces two artifacts, one truth:

  1. Working Java code in src/ — compiles, tests pass, is the source of truth
  2. Rich tutorial chapter in core-docs/ — reads back actual source files, never diverges, enriched with ★ Insight blocks and Mermaid diagrams at every design decision

Every integration point choice, simplification decision, technology mapping choice, and design pattern is a teaching moment. The learner doesn't just see WHAT was built — they understand WHY each choice was made, how the source language's idioms were translated to Java, and what alternatives were considered.

MANDATORY: Use Extended Thinking

Use extended thinking before implementing. The quality of the implementation depends on deep upfront reasoning about both the real source project and the simplified Java version. Before writing any code:

  • Study the source project's implementation of this feature end-to-end (in whatever language it's written in)
  • Identify the integration point — the exact seam where this feature connects to the existing system
  • Plan the technology mapping — how source language constructs translate to Java (e.g., goroutines to threads/executors, Python generators to Java iterators, Rust traits to Java interfaces)
  • Plan the simplified class mapping — which source types to keep, merge, skip, or hardcode
  • Design the build sequence starting from the integration point outward
  • Determine what to reuse and extend from prior features

Read the full file on GitHub · 307 lines

Files

What ships with it

2 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. 4d ago First seen · 307 lines · 120 tokens per session scan A eb95fa4c7d35

Subscribe to this mod's changes

core-builder is a skill published in the GitHub repository nlinhvu/learn-java-frameworks-marketplace (20 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 120 tokens to every session and 3,704 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

design-patterns

Common design patterns with Java examples (Factory, Builder, Strategy, Observer, Decorator, etc.). Use when user asks "implement pattern", "use factory", "strategy pattern", or when designing extensible components.

piomin/claude-ai-spring-boot · 47 tokens

context-service-guide

Navigate and understand any legacy cpp-context- WildFly/Maven service. LEGACY ONLY — must not be applied to new Spring Boot work. Use when onboarding to a context service, exploring its modules, or understanding its CQRS structure and integrations.

hmcts/agentic-plugins-marketplace · 53 tokens

java-optionals-eval-capture

Use in Symphony for Trello when a Java change or review presents a reusable Optional or absence/fallback strategy-selection lesson, including on an adjacent owning API such as ScopedValue even when no java.util.Optional appears. Capture the before/prompt/after code and create or update a self-contained eval issue in…

martin-francois/symphony-trello · 78 tokens

java-streams-eval-capture

Use in Symphony for Trello when a Java change or review presents a reusable lesson about choosing or preserving a stream, collector, direct result-producing collection transformation, or character-predicate traversal, including identity or delimited string reductions, even when the preferred final code contains no…

martin-francois/symphony-trello · 91 tokens

bootstrap

Foundation skill — auto-loads at SessionStart. Teaches 5-layer adaptive workflow, 1% pre-flight discovery rule, triage routing, skill announcement contract, project detection. All other skills depend on this. Do NOT manually load.

taipt1504/agent-skills · 51 tokens

article-writing

Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter.

affaan-m/ECC · 57 tokens