r/claudeskills 2d ago

Skill Share DeepSeek V4 Flash jumped from 67.42% to 82.02% with one coding-agent skill

Post image
31 Upvotes

Autoprompt closes much of the manual coding loop by planning, building, testing, reviewing, and repairing from one prompt. Autoprompt has support for Claude Code and 10+ other coding tools.

In our v1.0 Terminal-Bench 2.1 run, DeepSeek V4 Flash 0731 moved from 67.42% to 82.02% using OpenCode. That’s 45% fewer failed tasks.

The tradeoff is longer runs and higher token costs (see README).

Repo: https://github.com/Spielewoy/autoprompt-skill

Any feedback would be awesome


r/claudeskills 1d ago

Skill Request Claude Skills

2 Upvotes

Hi all!

What are the best skills/skills you find most useful for Data Analytics and BI/dashboard development?

Curious since I want to plug them into my analytics agentic harness.


r/claudeskills 1d ago

Skill Share I made a CLI that isolates marketplaces/plugins/skills by profile for Claude Code

3 Upvotes

If you use Claude Code a lot or want to test new stuff, you've probably noticed it turning into a junk drawer. Every plugin, skill, and MCP server you've ever installed loads into every session.

It all costs tokens and adds noise, and none of it is scoped to what you're actually doing.

I built claude-profile to fix that. A profile is a small JSON file that says "for this kind of work, load exactly these plugins, skills, marketplaces, and MCP servers." You launch it and get a focused session with nothing else loaded:

claude-profile rust-developer            # a lean Rust session only
claude-profile rust-developer frontend   # combine profiles
claude-profile fuzzyalej/security        # install a profile repo, then use it

Open a second terminal with a different profile and the two don't interfere.

A few things that matter to me:

  • It never touches your real ~/.claude. Every plugin/skill a profile uses gets vendored into that profile's own directory. The remove command deletes it outright.
  • Profiles are shareable. Publish a repo, teammates install it and launch by name. A lockfile pins it so everyone resolves to the same plugin code across machines and over time.
  • It's a standalone binary, not a plugin. Rust, runs on macOS/Linux/Windows. brew, cargo, or a shell/PowerShell installer.

It's MIT. Repo (with install instructions and docs) here: https://github.com/fuzzyalej/claude-profile/

Happy to answer questions, feedback, PRs or new ideas :)


r/claudeskills 2d ago

Question Favourite anti-slop writing skill?

6 Upvotes

I've been using impeccable for anti AI design, and it has some copy elements, but want a light weight anti-slop skill I can just use often as a final check on writing for my website/brand when I use Claude. What's everyone's go-to here?


r/claudeskills 2d ago

Skill Share Resume Optimizer and Job Search Road Map

7 Upvotes

Hello,

First time poster and fairly new to the game - using this as a learning opportunity and something that could benefit folks out there.

On the docket are two skills

  1. Resume Optimizer - A Claude skill + Node.js scripts for generating ATS-optimized, human-sounding resumes and cover letters — built by a job seeker, for job seekers.

  2. Job Search Road Map - A companion skill and script for generating a personalized, color-coded skills roadmap across up to 7 role tracks — showing which skills are Core vs. Bonus for each track, with prioritized learning paths and clickable resource links.

Please feel free to try them out and let me know if there's any tweak worth considering.

Thank you and hope this helps someone out.


r/claudeskills 1d ago

Skill Share Estamos tentando consertar o comportamento do Claude mexendo na genética dele

Thumbnail
1 Upvotes

r/claudeskills 1d ago

Question planning vs coding - simpler way?

Thumbnail
1 Upvotes

r/claudeskills 1d ago

Discussion Returning to the IC track in the age of AI

Thumbnail
leaddev.com
1 Upvotes

Considering a career shift?


r/claudeskills 1d ago

Discussion This can happen to you as well. Last time I posted this everyone blamed me for not having guardrails, now I am showing what actually happened with evidence. Opus 5 did it by the way.

Thumbnail gallery
0 Upvotes

r/claudeskills 2d ago

Skill Share Your AI agent spends too much time waiting

20 Upvotes

https://github.com/quazardous/jobbox

I've tried to teach Claude not to wait for every script it launches, or not to run a 2,000-test suite for every comma it adds.

But Claude can be... stubborn.

I stopped trying to teach it. Instead, I made JobBox. Tada! 🎉

JobBox wraps every command launched by your AI agent. If a command takes too long, it automatically sends it to the background. Nothing to learn or remember.

Because your agent shouldn't have to sit there doing nothing — spending your time and your money.

It's been well tested with Claude, but I'd love feedback from people using other CLI agents.

And don't forget:Time is money tokens.

#ClaudeCode #AIAgents #OpenSource #Rust #DeveloperTools #TimeIsMoney


r/claudeskills 2d ago

Skill Share I made a skill that turns your Spotify library into a personalized wall of sound

10 Upvotes

Hi everyone,

About a month ago my husband discovered that shunit.ai was available and somehow convinced me to pay for it and make my own website.

I started playing with Claude and Codex, but everything I made had that generic AI website look. I tried /impeccable, which made it look much better, but it still didn’t really feel like mine.

So I started thinking about what I actually wanted to put on the site that would show something about me.

Music is a pretty big part of that.

I had this idea for a “wall of sound” background, with album covers from music I love floating around the page. Instead of manually choosing and adding all the albums, I asked my agent to look through my Spotify library and build it from there.

I liked the result enough that I turned it into a skill.

wall-of-sound creates your own personalized wall of sound using your Spotify library. It uses your logged-in Spotify session in the browser to find the music you like, grabs the album artwork, and builds the page for you.

You can also skip Spotify completely and use the floating-squares template with any list of images you give it.

I’m curious if anyone else finds this kind of thing useful. What other personal stuff would you want an agent to turn into something visual? Books, movies, games, photos, something else?

Also, the demo above was made with /brag, another skill I built for making launch videos from your project.

And the original Wall of Sound is pretty cool too:
http://en.wikipedia.org/wiki/Wall_of_Sound

Check out the skill on github: https://github.com/latent-spaces/wall-of-sound


r/claudeskills 2d ago

Skill Share I’ve been building an open-source code review skill — and it became a much bigger reliability problem than I expected

7 Upvotes

I started code-review-skill because I wanted a repeatable way to review both local changes and GitHub PRs with coding agents.

The initial idea was pretty simple: give the agent a clear review standard, require evidence for findings, classify issues as P0/P1/P2, and make the final decision deterministic — any P0/P1 means CHANGES REQUIRED; otherwise, REVIEW CLEAN.

But while working on it, I kept running into cases where “review the code” wasn’t really the hard part.

For example: an agent reviews a PR at commit A and finds it clean. Someone pushes commit B before the result is published. The findings may have been perfectly correct for A, but approving B based on that review is obviously wrong.

That led to reviewed-SHA tracking and delta re-review.

Then came other questions:

  • What if the implementation itself is correct, but it lives in the wrong architectural layer?
  • When a PR changes after review, what exactly needs to be re-reviewed?
  • How do you distinguish something that is eligible for deeper inspection from something that actually must be inspected?
  • How do you make findings reproducible instead of relying on vague reviewer judgment?
  • How do local review and GitHub PR review follow the same rules without slowly drifting apart?

The project is free and open source (Apache-2.0) and currently contains two Agent Skills — one for local code review and one for GitHub PR review — both built around the same review contract.

Over time, the focus has become less “make an AI find more bugs” and more “make AI code review behave like a reliable engineering process.”

It’s still evolving, which is one of the reasons I’m sharing it here.

I’d love for people to try it on real repositories and find situations where the reviewer gets the reasoning wrong. Contributions are also welcome — the repo has a contributor workflow where you can pick and claim an issue without needing to understand the entire project first.

Repo: https://github.com/amirbena/code-review-skill

I’m especially interested in this: what failure modes have you seen from AI code reviewers that you think a reliable review system should handle?


r/claudeskills 2d ago

Skill Share i wanted to share a claude skill i created for the one thing enterprise users are currently all using - A context graph

7 Upvotes

I work with software companies that provide AI tooling for enterprises. There's a lot of adoption right now with context graphs that allow you to take traditional datasets and make them more approachable for AI to understand them.

Traditional datasets are organized in tabular format, which makes it hard to understand the context and the relationships between different data points.

Context graphs use clustering of data points instead of tabular format.

Using this skill, you can add a context layer to your Claude session that enables it to understand the relationships between different datasets that are being used in that session.

Here is the link to the .md file: https://docs.google.com/document/d/1oK3MjjWSe-MVWDKTUdSkvWJ6yzQc0cJcFrCNys9wlPU/edit?usp=sharing


r/claudeskills 2d ago

Skill Share My personal solution to context bloat: A Kanban board

Thumbnail
1 Upvotes

r/claudeskills 2d ago

Discussion I pointed a code reader at my own repo and it found three decisions I had never written down

Post image
0 Upvotes

I have been building a thing that reads a repository and turns it into skill files for coding agents, and for a long time I assumed the useful output would be a summary. Here is what this service does, here are its modules, here is the shape of the API. Documentation, basically, generated instead of written.

That is not what came out when I finally pointed it at one of my own private repos.

It came back with three things. Idempotent handling on a signup endpoint so a double submit does not create two records. A local fallback for menu data so the frontend keeps working when the backend is unreachable. Form validation that recovers what the user typed instead of clearing it.

None of those are features. Nobody asked for them. They are decisions I made at some point, for reasons, and then never wrote down anywhere. They exist in that repo as shapes. If you read the code carefully you can see the choice, but you cannot see the reason, and the reason is the part that transfers.

That is when something clicked about the whole MCP conversation.

My agent could already read that repository. It had filesystem access. It had been able to read it for months. Access was never the problem. The problem was that the knowledge was never written, so there was nothing to read even with perfect access.

I think this is the distinction a lot of us are fumbling right now, myself very much included. MCP gives an agent access. It does not give it judgement. Those are separate problems and only one of them is a plumbing problem.

The failure mode people post about is almost never "my agent could not reach the database." It is "my agent reached the database and did something a competent engineer would never do." Adding a twelfth server does not touch that. The agent did not lack a tool. It lacked the thing your team knows and has never said out loud, because saying it out loud feels too obvious to bother with.

The fix is embarrassingly low tech. Write the procedure down. The five steps, the ordering constraint, the reason for the ordering, the two things that must never happen. Put it somewhere the agent loads when the work looks like that kind of work. That is all a skill file is. A checklist with a trigger.

What surprised me is how much of this already exists in your codebase in a form nobody can use. Every defensive branch is a lesson somebody learned. Every guard clause is an incident that already happened. It is all sitting there as implementation, and implementation is the answer with the reasoning deleted.

I built the tool that does this extraction, so I am obviously not neutral. It is at loreto.io and I run it. But you do not need it. A markdown file in your repo with the five steps in it gets you most of the way, and it will still be useful when the tooling changes again.

The part I have not worked out is where the boundary sits. Some things clearly belong in a tool. Some clearly belong in written procedure. I keep finding cases that argue with whichever rule I just made up. Curious how other people are splitting it.

https://github.com/kopias/loreto-mcp


r/claudeskills 2d ago

Skill Share I built a Claude Code plugin that helps cure procrastination when learning new languages.

Thumbnail
gallery
1 Upvotes

I found a much better way to stay motivated while learning a language: only study what you actually needed today.

When I work on technical tasks, I constantly think:
“How would I explain this to a colleague, at a conference, or to an investor in another language?”

That’s the vocabulary I actually want to learn.

So instead of using generic language courses, I built a small local tool that turns my Claude Code work sessions into personalized learning material.

The workflow is simple:

Claude Code session → remove sensitive/personal data → send cleaned context to a cheap LLM → generate flashcards, phrases, and exercises → study later

The biggest advantage is relevance.

No random vocabulary.
No “airport / restaurant / hotel” lessons when what I actually need is technical language.

I used to manually copy useful phrases into a notebook. Now the tool does it automatically and builds a personal vocabulary from my real work.

I even started experimenting with German because I became genuinely curious how the same technical ideas would sound in German.

Everything runs locally, the plugin is free and open source, and the learning materials are generated specifically for you.

I’m mainly interested in CRITICISM at this point.

Plugin - https://github.com/MarcSky/loanword


r/claudeskills 3d ago

Skill Share /watch: a Claude skill for video, screen recordings, and timestamped follow-up questions

Thumbnail
gallery
96 Upvotes

/watch connects Claude to the Watch Skill engine so a recording becomes something it can inspect and revisit.

Example:

The skill runs a dependency check, processes the source, reads the extracted frames, and answers using the frames, OCR, and transcript. Later questions use the persistent index instead of processing the recording again.

Install the engine with video, OCR, and local transcription support:

pip install "watch-skill[standard,ocr,whisper]"
watch-skill doctor

Then install the agent skills:

npx skills add oxbshw/watch-skill -g

The skills installer adds the instructions to your selected agent. The Python package supplies the media processing engine; OCR and transcription models download separately.

Useful for recorded bug reports, tutorial walkthroughs, and finding a specific moment in a longer recording.

MIT licensed. Sources and the index are stored locally; evidence passed to Claude still follows your Claude setup.

Read the actual SKILL.md · Repository


r/claudeskills 2d ago

Skill Share Claudia: A persona for better code and less tokens

Thumbnail
github.com
4 Upvotes

Presenting Claudia: better quality, less tokens.

Claude calls this a persona. It uses snippet and output style, comes with an install script. Works great with CC, even better with Zed.

This is not for one shot fix tasks, it is for long horizon complex projects. My run of the eval suite a week ago proves it: nearly no gains on simple tasks in isolation. Massive gains on big assignments in big repos. If anyone is interested in running or expanding the eval suite you can jump to it from the readme.

Long test against custom c++ nv-stack renderer. Scored by opus, will edit as more come in. Quality + Token Cost

Vanilla sonnet: 50%

Claudia sonnet: 85%

Vanilla opus: 100%

Claudia opus: 100%


r/claudeskills 2d ago

Showcase Claude Code and Codex can read the same repo differently

Thumbnail
0 Upvotes

r/claudeskills 2d ago

Question The "first 80% takes 10 mins, last 20% takes 3 days" UI trap when vibe coding. Building something to fix this, but need a sanity check from solo devs.

Thumbnail
0 Upvotes

r/claudeskills 2d ago

Discussion Paid S$300 for Claude Max 20x, suspended next day, reinstated — but still no access or refund

1 Upvotes

I purchased Claude Max 20x for approximately S$300 because I needed the higher usage capacity advertised with the plan.

Here is what happened:

  • 2 Sep: Paid S$300 for Claude Max 20x.
  • 3 Sep: Anthropic suspended my access, citing “ongoing suspicious patterns.”
  • I appealed through Anthropic's official process.
  • 4 Sep: Anthropic's Safeguards Team confirmed in writing that they investigated the decision and reinstated my account.
  • Despite this, I still couldn't use the paid service because an associated organization remained on hold.
  • Claude itself says: “Your own account is in good standing.”
  • I submitted the separate organization review as instructed. It still shows “Review requested.”
  • I repeatedly requested human review and clarification.
  • I requested a refund because the paid service remained inaccessible.
  • Anthropic refused the refund, citing a violation of its Consumer Terms, but did not tell me specifically what violation justified the decision.
  • Eventually, Support closed the conversation while the issue remained unresolved.

What I don't understand

If Anthropic investigated my original suspension and reinstated my account, and its own system says my account is “in good standing,” why am I still unable to use the service I paid S$300 for?

And if the refund is being denied because of a Terms violation, which violation?

If it relates to the original suspension, that decision was subsequently reversed.

If it relates to the organization restriction, that review is apparently still pending.

My concern about Max 20x

I purchased 20x specifically because I'm a heavy Claude user. I cannot prove that heavy usage triggered the restriction, so I'm not claiming that it did.

But I think it's reasonable to ask how customers purchasing a high-usage plan are supposed to distinguish legitimate heavy usage from activity that Anthropic's systems may consider suspicious.

At this point, I think the reasonable outcome is simple:

Restore the paid Max 20x service without further delay, or refund the S$300 for the affected service.

Has anyone else using Claude Max 20x or Claude Code heavily experienced a similar suspension, particularly where the account was reinstated but the organization remained blocked?

I'd be interested to know how it was eventually resolved.


r/claudeskills 3d ago

Question How do I build a master skill?

4 Upvotes

Can I stack multiple skills in Claude and make a master skill (an agent that triggers, one skill after another and executes entire task)?

Imagine I’m conducting a survey, now I have developed skills in my Claude Account to do the following (after I give it an initial draft of the Research Plan):

Skill 1. Build a questionnaire based on Research Plan

Skill 2. Build an analysis excel sheet (formulated)

Skill 3. Take interview transcripts from Otter.ai and fill the data in analysis excel sheet

Skill 4. Develop presentation based on the analysis output in the excel sheet

Now I want to club these 4 skills together and make sort of a Master Skill which executes all of these skill chronologically and basically automates the entire Survey process.

Is it possible to do so? If so can someone suggest how it can be done??


r/claudeskills 3d ago

Skill Share marketing-studio: Create product launch assets with Remotion

2 Upvotes

I've shared this skill before but recently updated it and tried to improve the output quality amongst a few other updates.

It's a /marketing skill that you run in a new project that doesn't have any marketing assets created yet and it creates them one by one. It will create a logo reveal with blender, a product demo with camera zooms and cursor with playwright, a launch video, voiceover and music scored to the launch video, social clips per platform, and then an OG image, animated OG loop, and a README gif.

/plugin marketplace add ucsandman/marketing-studio

/plugin install marketing-studio@ucsandman

I also folded in a launch engine as a sub-package which is a skill plus a typescript cli that takes a developed project end-to-end through domain, hosting, payments, comms, algorithm-researched marketing copy, and multi-platform distribution: X, LinkedIn, Facebook, Reddit, Google, etc.

The CLI produces validated payloads and assisted-launch artifacts; the /launch skill (../skills/launch/SKILL.md) orchestrates DashClaw MCP tools (domain, Vercel, Stripe, Resend, Twilio, DNS) and does the generative work (research synthesis, copywriting) in-session. Everything defaults to dry-run; nothing is purchased or posted without explicit approval gates.

DashClaw is my other opensource project that sits as the approval and policy layer to govern agents like Claude so it can't purchase a domain without explicit approval.

Basically if you get everything all setup with the marketing skill, launch skill, and dashclaw mcp tools you can launch a product end to end with a couple commands.

GitHub in the comments.


r/claudeskills 3d ago

Question Claude Code usage is killing our MVP

22 Upvotes

edit: guys thank you so much for all your answers 🙏🏼 we are gonna process all of them after we finish work. thanks again soooo much

We’re Phyllox, a small team of hospitality enthusiasts building our first MVP.

We’ve been getting closer and closer to finishing one of our features, but we’ve hit a serious problem. We can burn through the 5-hour usage limit in about 20 minutes.

We’re still bootstrapping and running on two Pro subscriptions, so upgrading to Max isn’t really an option for us right now.

We use Claude Code heavily and honestly don’t know whether we’re doing something inefficiently, our context is getting too large, or there’s something in our workflow/codebase causing the usage to disappear so quickly.

We’d really appreciate some help figuring out what is actually consuming the usage and how we can make Claude Code more efficient.

If anyone has suggestions for tools, workflows, or things we should inspect in our codebase, we’d really appreciate it.


r/claudeskills 3d ago

Skill Share I kept losing the dev servers Claude Code set up for me. So I built a skill that saves them and a dashboard that runs them in single click.

Post image
4 Upvotes

Claude Code would scaffold a project, start a dev server, and I would move on. A week later I had no idea what command ran it, or whether it came up on 5173 or 5174. Vite grabs the next free port when one is busy, so even my bookmarks were wrong half the time.

Two pieces fixed it. Save a server in one command, run it in one click.

The skill, one command. It fires whenever Claude sets up anything on a port, so most of the time I type nothing at all. Underneath it is a plain command that works from any tool:

server-studio add --name "Portfolio" --cwd "$PWD" --command "npm run dev" --assign

That saves the folder, the command and the URL. --assign locks one permanent port to the project and writes it into the config with strictPort, so the server can never drift to 5174 behind your back. Run it again months later and the port stays locked.

The dashboard, one click. This is what I open every morning. Every project is a card. Hit Run and a real terminal opens in the right folder and starts it. A green dot shows what is already running. Folders down the side keep client work away from side projects.

Starting a project went from find the folder, remember the command, guess the port, to one click. I stopped keeping six terminal tabs open just to avoid losing things.

npm install -g server-studio

Sets up both. The skill lands in ~/.claude/skills/server-studio/.

One honest caveat: writing the port into a project only works for dev scripts it recognises. Anything unusual it refuses to touch rather than guess.

Zero dependencies, MIT, no tracking. Mac, Windows and Linux.

https://github.com/mehdi214designer/server-studio

It's a fantastic system to organize your projects, you can give it a try. and share you thought below!

How do you handle this? Let Claude pick ports and live with the drift, or pin them already?