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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

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
The Skill Writes Itself: Building Complex Claude Skills F...
Denis Morozo · 2026-05-16 · via DEV Community

You know how it goes. You're deep in some code, implementing a new feature or reading about another cool thing you can do with your brain and AI power, when — BUZZ — the work chat blows up. 15 seconds later, you're on an emergency call with the top dogs asking what we can do about it.

Sometimes it happens so fast that users never even notice the issue, chalking it up to a "network error" or "overheated device" — while deep in the Kibana logs, in the silence of traces and spans, the issue grows until it's finally caught by an alert and lands in your inbox as "This isn't an emergency, but it looks suspicious...". Some of you may have a first-class aggregation system that does the job for you, delivering the full picture along with your morning cappuccino. In my case, I have to read Kibana logs across different Kibana instances, check traces in Datadog, dig through the Wiki, JIRA, or even GitHub, and finally tie all the strings together.

One day, filling out yet another investigation report — two-thirds of which were log excerpts showing the same broken workflow — it hit me: "Why am I still doing this?" The investigation and deduction are the fun part. The tedious part is logging into every resource, defining the same time interval five times, copying and combining logs, and tracking down trace IDs (which can mutate as a message travels through different systems).

The trick: don't design the SKILL, discover it

Here's what I want you to take away: don't sit down to design a complex SKILL from scratch. Do the work with the AI, then ask it to codify the workflow into a SKILL afterwards. The conversation is the spec.

This works because a SKILL is just a program written at a higher level of abstraction. And the easiest way to write that program is to run it manually first, with the AI watching.

How it played out

I already had a Swiss Army knife of skills I use in regular work:

  • a git reader (curl-based)
  • an Atlassian Wiki skill (read/write Wiki pages)
  • a JIRA skill (read/write tickets)
  • a Datadog reader (query traces)

So the next time an alert landed, instead of opening five tabs, I just started asking:

"Check the logs for this time interval for %USER%."
"Analyze the Datadog traces for error responses and cross-reference them against the collected logs — find matches, highlight suspicious patterns."
"Build an issue timeline and list the systems involved."

And here's the kicker — the GitHub skill. Once you know the application version, you can pull the sources, find the exact module producing the error, point right to it in the report, and even run a simulation against the affected app to nail down the root cause.

When the report was ready, instead of clearing the context, I asked: "Create a new SKILL based on this conversation." Review, save, done. That's issue-investigator.

From the first alert to a complete report: 5 minutes on a simple issue, a few hours on the gnarly PROD ones — end-to-end, with me reading the result instead of assembling it.

Keep your skills sharp

A SKILL built from one real investigation isn't finished — it's a v1. Every time you reuse it and spot a rough edge, polish it. That's how a SKILL stays sharp.

And once it is sharp — share it with your team. If you cut down the time you spend on tedious work, you boost your own efficiency. Spread that tool across your team and you boost everyone's. That's the multiplier you don't get from solving the problem alone.

And when every team works this way, SKILLs stop being personal productivity hacks — they become the operating system of the company.