Skill Creator

749 posts

Skill Creator banner
Skill Creator

Skill Creator

@skillcreatorai

The Platform for AI Agent Skills

~/.claude/skills/ Se unió Aralık 2025
806 Siguiendo347 Seguidores
Skill Creator
Skill Creator@skillcreatorai·
Claude Code starts executing your tools before the model finishes generating its response. As soon as a tool_use block arrives in the stream, execution begins. The rest of the model output generates in parallel. This overlaps tool I/O with generation latency. That is why Claude Code feels fast even on complex multi-tool responses. It is not waiting for the full response before acting. One of 43 patterns in /reverse-claude. skillcreator.ai/reverse-claude
Skill Creator tweet media
English
0
0
1
102
Skill Creator
Skill Creator@skillcreatorai·
"Fix the login bug." That prompt is missing four things: where the bug is, what symptom to look for, how to verify the fix, and what not to touch. We built a skill that adds all four automatically. It reads your codebase, finds the relevant files, and rewrites the prompt with specific paths, test commands, and constraints. Before: fix the login bug After: users report login fails after session timeout. Check src/auth/, especially token refresh. Write a failing test first. Verify by running the auth test suite. /best-practices fix the login bug npx skills add best-practices
Skill Creator tweet media
English
0
0
1
27
Skill Creator
Skill Creator@skillcreatorai·
Claude Code has 6 layers of settings. Most people only know about one. Policy beats local. Local beats project. Project beats user. User beats plugin. Plugin beats default. settings.local.json is always gitignored. That is where your API keys and personal preferences go. Not in settings.json. Not in CLAUDE.md. Hooks run on 4 event types: after a command, after a prompt, after an agent spawns, after an HTTP request. PostToolUse for auto-formatting. PreToolUse for blocking dangerous commands. /reverse-claude set up PostToolUse hooks for auto-formatting skillcreator.ai/reverse-claude
Skill Creator tweet media
English
0
0
2
58
Skill Creator
Skill Creator@skillcreatorai·
Claude Code burned 250,000+ wasted API calls per day before they added a circuit breaker to the compaction system. Long sessions hit a loop: context too big, compact fails, retry, compact fails again. Infinite cycle. The fix was a 3-failure max circuit breaker that kills the loop and falls back to a cheaper strategy. Four compaction tiers exist. Micro. Session memory. Full. Reactive. Each one more expensive than the last. The system escalates only when the cheaper one fails. We mapped the full hierarchy in /reverse-claude. skillcreator.ai/reverse-claude
Skill Creator tweet media
English
0
1
2
109
Skill Creator
Skill Creator@skillcreatorai·
We reverse-engineered 28,000 lines of Claude Code's production source into a single SKILL . MD Permissions. Plugins. Agents. Context compaction. Retry logic. Configuration. Cost tracking. 7 modules. 43 patterns. One skill you can point at Claude Code itself. /reverse-claude what features are in the source but not in the docs yet? npx skills add skillcreatorai/reverse-claude skillcreator.ai/reverse-claude
English
0
2
4
182
Skill Creator
Skill Creator@skillcreatorai·
Claude Code runs every shell command through a 10-step permission cascade before it executes. Deny rules strip ALL environment variables. Allow rules only strip the safe ones. That asymmetry is intentional. It prevents DOCKER_HOST=evil docker ps from matching your allow(docker:*) rule. We documented the full cascade with pseudocode in /reverse-claude. /reverse-claude how does the permission cascade work? skillcreator.ai/reverse-claude
Skill Creator tweet media
English
0
1
4
108
Skill Creator retuiteado
cedric
cedric@cedric_chee·
KAIROS is what happens when Anthropic takes the OpenClaw blueprint, makes it native to their coding agent, and turns it up to 11 for devs. Code shows Ant building almost the identical arch straight into CC (just deeper, safer, and more tightly integrated for devs)
cedric tweet mediacedric tweet media
Markdown Engineer@NoahGreenSnow

turned the leaked claude code source into a 50-lesson architecture course. every system dissected with mermaid diagrams, actual code snippets, and interactive quizzes. markdown.engineering/learn-claude-c…

English
0
3
8
804
Skill Creator
Skill Creator@skillcreatorai·
Snyk audited ~4,000 skills on ClawHub earlier this year. 13.4% had critical security issues. Not edge cases: prompt injection, credential exfiltration, actual malicious payloads. 76 of them were designed specifically to steal API keys and tokens from the developer's environment. The barrier to publishing a skill is a SKILL.md file and a GitHub account. That's it. No code signing. No review process. No sandbox. No one looks at what the skill actually does before it's installable by anyone. This bothered me enough to build a pre-install inspection layer into SkillCreator. Before a skill touches your environment, you see everything: the full prompt text, any scripts it bundles, the tools it's allowed to call, the hooks it registers. You can run it against your own eval cases first. Every install shows a diff preview of exactly what changes on your machine. Skills should be auditable. Right now almost none of them are. The ecosystem grew faster than the safety tooling, and that gap is where the malicious skills live.
Skill Creator tweet media
English
0
1
2
128
Skill Creator
Skill Creator@skillcreatorai·
Each agent skill costs 30-50 tokens just to sit in your system prompt. Install 40 skills and you've burned 2,000 tokens of context before you've typed a single character. Most people don't track this. They install skills like browser extensions and wonder why their agent gets confused on long tasks.
Skill Creator tweet media
English
0
1
4
127
Skill Creator
Skill Creator@skillcreatorai·
Added a dependency graph to Skill Creator Desktop. 50+ skills in a library and you can't see which ones interact, which ones overlap, or which ones conflict. The filesystem gives you a flat list of files. That's it. The force-directed graph shows every skill as a node. Edges are dependencies and read/write relationships. Click a node, see its eval scores, version history, and what it touches. There is a huge upside to actually figuring out proper chains of connection inside of skills and building these outs
English
0
1
2
94
Skill Creator
Skill Creator@skillcreatorai·
Skill Creator Desktop ships next week. One app for the entire skill lifecycle: → Create from URLs, docs, or scratch → Evaluate against test cases → Version every iteration with diffs → Search and filter your entire library → Pass rate tracking per skill Generate skills with Claude, Codex, Cursor, whatever. Manage them properly. skillcreator.ai
Skill Creator tweet media
English
0
2
4
155
Skill Creator
Skill Creator@skillcreatorai·
Skill Creator Desktop library view: Search across every skill you've written. Filter by runtime, tag, last-edited date. Pass rates visible at a glance. One place instead of grepping through 6 repos. Next week.
English
0
0
3
28
Skill Creator retuiteado
Skill Creator
Skill Creator@skillcreatorai·
Agentic Coding Life Hack: Tell your agent to use pbcopy One line in your CLAUDE.md / AGENTS.md "When I need to run a command, copy it to clipboard using pbcopy" No more janky terminal copy-pasting (if u use vim, you can ignore this)
English
1
3
5
517
Skill Creator
Skill Creator@skillcreatorai·
Skills need the same lifecycle as code: version control, test suites, deployment tracking. Right now there's nothing purpose-built for this. You can't diff SKILL.md versions, run tests against prompt workflows, or see which skills degrade over time. Skill Creator Desktop covers the full loop: - Version history with diffs - Test cases you run before and after changes - Pass rate tracking per skill - Searchable library across all your projects Shipping soon.
Skill Creator tweet media
English
0
1
3
104
Skill Creator
Skill Creator@skillcreatorai·
Skill eval loop: 1. Pick a skill from your library 2. Write 10 test inputs 3. Run. See pass/fail per input. 4. Edit the skill. Run again. Compare scores. 5. Keep the version that scores higher. Built this into Skill Creator Desktop.
Skill Creator tweet media
English
0
2
4
143
Skill Creator retuiteado
Skill Creator
Skill Creator@skillcreatorai·
200+ SKILL.md files across 6 projects. The management tool was grep and find. Needed: - Library view with search, tags, filters - Version diffs when editing a skill - Test runner that checks pass rates after changes - One place instead of 6 repos So I built it. Desktop app, ships soon.
Skill Creator tweet media
English
0
3
4
170