Install
$ agentstack add skill-shivam990q-better-than-claude-skills-skill-creator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ● Filesystem access Used
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Karpathy Guidelines
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations on LLM coding pitfalls.
Tradeoff: These guidelines bias toward caution over speed. For trivial tasks (simple typo fixes, obvious one-liners), use judgment — not every change needs the full rigor. The goal is reducing costly mistakes on non-trivial work.
The Problems
From Andrej Karpathy:
> "The models make wrong assumptions on your behalf and just run along with them without checking. They don't manage their confusion, don't seek clarifications, don't surface inconsistencies, don't present tradeoffs, don't push back when they should."
> "They really like to overcomplicate code and APIs, bloat abstractions, don't clean up dead code... implement a bloated construction over 1000 lines when 100 would do."
> "They still sometimes change/remove comments and code they don't sufficiently understand as side effects, even if orthogonal to the task."
Four principles in one file that directly address these issues:
| Principle | Addresses | |-----------|-----------| | Think Before Coding | Wrong assumptions, hidden confusion, missing tradeoffs | | Simplicity First | Overcomplication, bloated abstractions | | Surgical Changes | Orthogonal edits, touching code you shouldn't | | Goal-Driven Execution | Leverage through tests-first, verifiable success criteria |
Principle 1: Think Before Coding
Don't assume. Don't hide confusion. Surface tradeoffs.
Before implementing anything, follow these steps:
- State your assumptions explicitly. If you are uncertain about scope, format, fields, or approach — ask instead of guessing.
- If multiple interpretations exist, present all of them with tradeoffs. Never pick one silently.
- If a simpler approach exists than what the user described, say so. Push back when warranted.
- If something is unclear, stop immediately. Name exactly what is confusing and ask for clarification.
The reason this matters: LLMs naturally want to be helpful and will confidently run with wrong assumptions rather than appear uncertain. This creates wasted work and bugs. Surfacing confusion early is always cheaper than fixing wrong code later.
Example 1: Hidden Assumptions
User Request: "Add a feature to export user data"
❌ What LLMs Do (Wrong Assumptions)
def export_users(format='json'):
"""Export all users to a file."""
users = User.query.all()
if format == 'json':
with open('users.json', 'w') as f:
json.dump([u.to_dict() for u in users], f)
elif format == 'csv':
with open('users.csv', 'w') as f:
writer = csv.DictWriter(f, fieldnames=['id', 'email', 'name'])
writer.writeheader()
writer.writerows([u.to_dict() for u in users])
return f"Exported {len(users)} users"
Problems:
- Assumed it should export ALL users (what about pagination? privacy?)
- Assumed file location without asking
- Assumed which fields to include
- Assumed CSV fieldnames without checking actual data structure
✅ What Should Happen (Surface Assumptions)
Before implementing, I need to clarify:
1. **Scope**: Export all users or filtered subset? (privacy implications)
2. **Format**: You mentioned "export" - did you mean:
- Download file in browser?
- Background job with email notification?
- API endpoint returning data?
3. **Fields**: Which user fields? (some might be sensitive)
4. **Volume**: How many users typically? (affects approach)
Simplest approach: Add an API endpoint that returns paginated JSON.
Would need more info for file-based exports.
What's your preference?
Example 2: Multiple Interpretations
User Request: "Make the search faster"
❌ What LLMs Do (Pick Silently)
# Adds caching, database indexes, and async processing
# without asking which "faster" matters
@lru_cache(maxsize=1000)
async def search(query: str) -> List[Result]:
# ... 200 lines of optimization code
✅ What Should Happen
"Make the search faster" could mean:
1. **Faster response time** ( float:
pass
class PercentageDiscount(DiscountStrategy):
def __init__(self, percentage: float):
self.percentage = percentage
def calculate(self, amount: float) -> float:
return amount * (self.percentage / 100)
class FixedDiscount(DiscountStrategy):
def __init__(self, fixed_amount: float):
self.fixed_amount = fixed_amount
def calculate(self, amount: float) -> float:
return min(self.fixed_amount, amount)
@dataclass
class DiscountConfig:
strategy: DiscountStrategy
min_purchase: float = 0.0
max_discount: float = float('inf')
class DiscountCalculator:
def __init__(self, config: DiscountConfig):
self.config = config
def apply_discount(self, amount: float) -> float:
if amount float:
"""Calculate discount amount. percent should be 0-100."""
return amount * (percent / 100)
# Usage
discount = calculate_discount(100.0, 10.0) # $10 off
When to add complexity: Only when you actually need multiple discount types. If that requirement comes later, refactor then.
Example 2: Speculative Features
User Request: "Save user preferences to database"
❌ What LLMs Do (Unnecessary Features)
class PreferenceManager:
def __init__(self, db, cache=None, validator=None):
self.db = db
self.cache = cache or InMemoryCache()
self.validator = validator or DefaultValidator()
def save(self, user_id: int, prefs: dict,
merge: bool = True,
validate: bool = True,
notify: bool = False) -> bool:
"""Save preferences with optional merging, validation, and notifications."""
if validate:
errors = self.validator.validate(prefs)
if errors:
raise ValidationError(errors)
existing = self.get(user_id) if merge else {}
if merge:
existing.update(prefs)
prefs = existing
self.db.execute(
"UPDATE users SET preferences = ? WHERE id = ?",
(json.dumps(prefs), user_id)
)
if self.cache:
self.cache.set(f"prefs:{user_id}", prefs)
if notify:
self.notify_preference_change(user_id, prefs)
return True
def notify_preference_change(self, user_id: int, prefs: dict):
# Another 30 lines for a feature nobody asked for
pass
✅ What Should Happen (Just What Was Asked)
def save_preferences(db, user_id: int, preferences: dict):
"""Save user preferences to database."""
db.execute(
"UPDATE users SET preferences = ? WHERE id = ?",
(json.dumps(preferences), user_id)
)
Add later if needed: Caching (when performance matters), validation (when bad data appears), merging (when requirement emerges).
Principle 3: Surgical Changes
Touch only what you must. Clean up only your own mess.
When editing existing code, follow these rules:
- Do not "improve" adjacent code, comments, or formatting that is unrelated to the task.
- Do not refactor things that are not broken.
- Match the existing code style (quote style, spacing, naming conventions), even if you would do it differently in a new project.
- If you notice unrelated dead code or issues, mention them in your response — but do not modify them.
When your changes create orphaned code:
- Remove imports, variables, and functions that YOUR changes made unused.
- Do not remove pre-existing dead code unless the user specifically asks you to.
The test for every change: every modified line should trace directly back to the user's request. If a line does not connect to the request, revert it.
The reason this matters: "drive-by refactoring" creates noisy diffs, introduces unexpected regressions, and makes code review harder. The user asked for one thing — deliver exactly that.
Example 1: Drive-by Refactoring
User Request: "Fix the bug where empty emails crash the validator"
❌ What LLMs Do (Too Much)
def validate_user(user_data):
- # Check email format
- if not user_data.get('email'):
+ """Validate user data."""
+ email = user_data.get('email', '').strip()
+
+ # Validate email
+ if not email:
raise ValueError("Email required")
-
- # Basic email validation
- if '@' not in user_data['email']:
+ if '@' not in email or '.' not in email.split('@')[1]:
raise ValueError("Invalid email")
- # Check username
- if not user_data.get('username'):
+ # Validate username
+ username = user_data.get('username', '').strip()
+ if not username:
raise ValueError("Username required")
+ if len(username) bool:
+ """Upload file to destination with logging."""
+ logger.info(f"Uploading {file_path} to {destination}")
+
try:
- with open(file_path, 'rb') as f:
- data = f.read()
-
- response = requests.post(destination, files={'file': data})
-
- if response.status_code == 200:
- return True
- else:
- return False
+ with open(file_path, "rb") as f:
+ data = f.read()
+ response = requests.post(destination, files={"file": data})
+ success = response.status_code == 200
+
+ if success:
+ logger.info(f"Upload successful: {file_path}")
+ else:
+ logger.error(f"Upload failed: {file_path}, status={response.status_code}")
+
+ return success
except Exception as e:
- print(f"Error: {e}")
+ logger.exception(f"Upload error for {file_path}: {e}")
return False
Problems:
- Changed quote style ('' to "")
- Added type hints nobody asked for
- Added docstring
- Reformatted whitespace
- Changed boolean return logic
✅ What Should Happen (Match Existing Style)
+ import logging
+
+ logger = logging.getLogger(__name__)
+
def upload_file(file_path, destination):
+ logger.info(f'Starting upload: {file_path}')
try:
with open(file_path, 'rb') as f:
data = f.read()
response = requests.post(destination, files={'file': data})
if response.status_code == 200:
+ logger.info(f'Upload successful: {file_path}')
return True
else:
+ logger.error(f'Upload failed: {file_path}, status={response.status_code}')
return False
except Exception as e:
- print(f"Error: {e}")
+ logger.exception(f'Upload error: {file_path}')
return False
Matched: Single quotes, no type hints, existing boolean pattern, spacing style.
Principle 4: Goal-Driven Execution
Define success criteria. Loop until verified.
Transform vague tasks into verifiable goals before writing code:
- "Add validation" → "Write tests for invalid inputs, then make them pass"
- "Fix the bug" → "Write a test that reproduces the bug, then make it pass"
- "Refactor X" → "Ensure all existing tests pass before and after the refactor"
For multi-step tasks, state a brief plan with verification at each step:
1. [Step] → verify: [how you will check this worked]
2. [Step] → verify: [how you will check this worked]
3. [Step] → verify: [how you will check this worked]
Strong success criteria let you loop independently and make confident progress. Weak criteria ("make it work") require constant clarification and lead to vague implementations.
The reason this matters: LLMs are exceptionally good at looping until they meet specific goals. Giving declarative success criteria instead of imperative instructions produces dramatically better results.
Example 1: Vague vs. Verifiable
User Request: "Fix the authentication system"
❌ What LLMs Do (Vague Approach)
I'll fix the authentication system by:
1. Reviewing the code
2. Identifying issues
3. Making improvements
4. Testing the changes
[Proceeds to make changes without clear success criteria]
✅ What Should Happen (Verifiable Goals)
To "fix authentication," I need to define success criteria.
What specific issue are we solving?
If the issue is "users stay logged in after password change":
Plan:
1. Write test: Change password → verify old session invalidated
Verify: Test fails (reproduces bug)
2. Implement: Invalidate sessions on password change
Verify: Test passes
3. Check edge cases: Multiple active sessions, concurrent changes
Verify: Additional tests pass
4. Verify no regression: Existing auth tests still pass
Verify: Full test suite green
Current test coverage for auth: [shows coverage]
What's the specific auth issue you're seeing?
Example 2: Multi-Step with Verification
User Request: "Add rate limiting to the API"
❌ What LLMs Do (All at Once)
# Implements full rate limiting with Redis, multiple strategies,
# configuration system, and monitoring in one 300-line commit
# No clear verification steps
✅ What Should Happen (Incremental with Verification)
Plan for rate limiting:
1. Add basic in-memory rate limiting (single endpoint)
Verify:
- Test: 100 requests → first 10 succeed, rest get 429
- Manual: curl endpoint 11 times, see rate limit error
2. Extract to middleware (apply to all endpoints)
Verify:
- Test: Rate limits apply to /users and /posts
- Existing endpoint tests still pass
3. Add Redis backend (for multi-server)
Verify:
- Test: Rate limit persists across app restarts
- Test: Two app instances share rate limit counter
4. Add configuration (rates per endpoint)
Verify:
- Test: /search allows 10/min, /users allows 100/min
- Config file parsed correctly
Each step is independently verifiable and deployable.
Start with step 1?
Example 3: Test-First Verification
User Request: "The sorting breaks when there are duplicate scores"
❌ What LLMs Do (Fix Without Reproducing)
# Immediately changes sort logic without confirming the bug
def sort_scores(scores):
return sorted(scores, key=lambda x: (-x['score'], x['name']))
✅ What Should Happen (Reproduce First)
# 1. First, write a test that reproduces the issue
def test_sort_with_duplicate_scores():
"""Test sorting when multiple items have same score."""
scores = [
{'name': 'Alice', 'score': 100},
{'name': 'Bob', 'score': 100},
{'name': 'Charlie', 'score': 90},
]
result = sort_scores(scores)
# The bug: order is non-deterministic for duplicates
# Run this test multiple times, it should be consistent
assert result[0]['score'] == 100
assert result[1]['score'] == 100
assert result[2]['score'] == 90
# Verify: Run test 10 times → fails with inconsistent ordering
# 2. Now fix with stable sort
def sort_scores(scores):
"""Sort by score descending, then name ascending for ties."""
return sorted(scores, key=lambda x: (-x['score'], x['name']))
# Verify: Test passes consistently
Quick Reference Checklist
Before writing or modifying any code, run through this checklist:
- Assumptions — Have I stated what I am assuming? Could the user mean something different?
- Simplicity — Is this the simplest solution? Am I adding anything that was not asked for?
- Scope — Am I only changing what was requested? Am I touching unrelated code?
- Verification — Do I have a clear way to verify this works? Can I write a test first?
Anti-Patterns Summary
| Principle | Anti-Pattern | Fix | |-----------|-------------|--
…
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Shivam990q
- Source: Shivam990q/better-than-claude-skills
- License: MIT
- Homepage: https://claude.ai/customize/skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.