惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
罗磊的独立博客
雷峰网
雷峰网
量子位
V
Visual Studio Blog
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
月光博客
月光博客
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
腾讯CDC
Engineering at Meta
Engineering at Meta
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Collection of Claude Skills for Indie Developers - Here's...
DarkenAmber · 2026-06-18 · via DEV Community

DarkenAmber

A few months ago I started building small tools as single HTML files - no npm, no React, no backend. Just one file that opens in a browser and works offline.

I built 4 real products this way:

DarkenAmber IT Tools - 17+ developer tools in 194KB
ZeroOffice - PDF, image, AI tools in one file
PrivacyKit - Photo privacy tools, no upload required
ElectroKit - Electrical calculator + cost estimates for CIS market

Every single one: one .html file. Works offline. Opens instantly. No server.

The problem with AI coding assistants

Every time I asked Claude or Copilot to build something simple, I got:

A React project with src/ folder
package.json with 12 dependencies
webpack config
TypeScript setup

...before writing a single line of actual logic.

I kept manually correcting it. "No, one file. No npm. Vanilla JS."

Then I realized - I should just teach it once and reuse that knowledge.

What is a Claude Skill?

A skill is a Markdown file with YAML frontmatter that changes how Claude thinks for a specific context.

It is not a prompt. It is not a system message. It is a reusable set of rules that shapes how Claude reasons, what it prioritizes, and what it avoids.

yaml---
name: single-file-app
description: "Build complete web tools as a single HTML file - vanilla JS, inline CSS, localStorage, offline-first."
tags:

  • html
  • vanilla-js
  • offline version: 1.2 ---

The two skills I built

  1. single-file-app

Teaches Claude to build complete web tools in one HTML file.

What changes:

No React, no npm, no build tools unless truly justified
Vanilla JS first, always
localStorage for data persistence
Dark/light theme with system preference detection
Accessibility built in (labels, aria, keyboard nav)
XSS prevention for user input
Export/import for user data

Anti-patterns it prevents:

❌ "Let me set up a React project"
❌ Creating src/ folder for a simple tool

❌ Suggesting npm install for a calculator
✅ "Here is your complete HTML file"

  1. ship-it

Teaches Claude to bias toward shipping over planning for early-stage MVPs.

What it does:

Shows trade-offs instead of blocking decisions
Cuts scope to what proves the core idea
Knows when NOT to apply (payments, auth, licensing, irreversible ops)

The trade-off table (not a blocking table):

User saysClaude shows"We should make it scalable""Scalability now means X days extra. You have few or no users. Want to spend that on scale or first users?""Let me refactor before shipping""Refactor now (cleaner, delayed feedback) or ship and refactor if users return (faster validation, messier code). Your call."

The key insight: a skill should be an advisor, not a saboteur.

How to install

Claude Code

bash# single-file-app
curl -o CLAUDE.md https://raw.githubusercontent.com/DarkenAmber/claude-skills/main/single-file-app/SKILL.md

Both skills together

curl https://raw.githubusercontent.com/DarkenAmber/claude-skills/main/single-file-app/SKILL.md > CLAUDE.md
curl https://raw.githubusercontent.com/DarkenAmber/claude-skills/main/ship-it/SKILL.md >> CLAUDE.md

Claude.ai Projects

Copy the contents of any SKILL.md into your Project Instructions.

What I learned building these

  1. Skills should show trade-offs, not make decisions

Early version of ship-it had a table that said "We need tests before launching" → "Smoke test manually, write tests after validation". This is the skill making a decision for you. Bad.

Better: show the cost of each option and let the developer decide.

  1. Exceptions matter more than rules

The most valuable part of ship-it is not the rules - it is the Do NOT use when section:

Payments and billing
Auth and licensing
Irreversible data operations

Without this, the skill would tell you to skip tests on your payment module. That is dangerous.

  1. One file is not a limitation - it is a constraint that forces clarity

When you cannot split into components, you think harder about what actually needs to exist. Every line earns its place.

  1. Skills get better through iteration

Both skills went through 3+ review rounds. Each round caught something the previous missed. The process itself demonstrated ship-it's philosophy - ship early, iterate on feedback.

The repo

github.com/DarkenAmber/claude-skills

Two skills, MIT license, open to contributions.

If you build something with these - I would love to see it.

What rules do you give your AI coding assistant? Do you have a CLAUDE.md or .cursorrules file you swear by?