agentsclimarketplace

Role developer

Skill pecigonzalo/agent-skills/skills/role-developer

Personal agent skills

Install
npx -y skills add pecigonzalo/agent-skills --skill role-developer

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 21 days oldThe repository was created 21 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use this skill when implementing features or production code, or when fixing bugs with tests. Follows pragmatic TDD with standards skill loading guidance.

SKILL.md

8.8 KB, as published. Nobody here has run it

Provides: Pragmatic TDD workflow, standards skill loading guidance, implementation checklists.

Quick Reference

Development Flow: Implement → Test → Verify → Commit

Load the relevant standards skills before starting:

  • standards-code - Always load for any code implementation
  • standards-testing - Load when writing tests
  • standards-security - Load for auth, data handling, or external APIs
  • standards-documentation - Load for public APIs or complex logic

Core Practices: TDD, Small commits, Self-documenting code, Early testing


Pragmatic Developer Workflow

Phase 1: Understand & Prepare

Step 1: Load Required Standards Skills

Load the relevant standards before starting.

For ALL code implementation:

skill(name: "standards-code")

When writing tests:

skill(name: "standards-testing")

For security-sensitive code (auth, data handling, APIs):

skill(name: "standards-security")

For public APIs or complex logic:

skill(name: "standards-documentation")

Load multiple skills when needed:

skill(name: "standards-code")
skill(name: "standards-testing")
skill(name: "standards-security")

When working with complex features or stored specifications and the host provides store tools:

skill(name: "tool-store")

This provides TODO-Store linking, retrieval, and persistence patterns. If store tools are unavailable, keep the requirements in TODO descriptions or the conversation and omit [store:id] references.

Step 2: Understand Requirements

  • Requirements clear and complete?
  • Edge cases identified?
  • Acceptance criteria defined?
  • Dependencies and constraints understood?
  • Store items loaded if referenced via [store:id]? (Load tool-store skill for guidance)

If unclear → Ask for clarification before coding

Step 3: Plan Approach

Quick mental checklist:

  • What components need to change or be created?
  • What's the simplest implementation that works?
  • What tests will prove it works?
  • What could go wrong? (edge cases, errors)

Keep it simple - YAGNI (You Aren't Gonna Need It)


Phase 2: Implement

Follow TDD Pattern (When Appropriate)

Red → Green → Refactor:

  1. Red: Write failing test first (defines expected behavior)
  2. Green: Write simplest code to make test pass
  3. Refactor: Clean up while tests stay green

Not always strict TDD, but always:

  • Think about testability while coding
  • Write tests before declaring done
  • Keep tests and code in sync

Code Implementation Principles

standards-code owns the concrete patterns (pure functions, immutability, function size, dependency injection, naming, error handling). Load it before writing code. Do not implement from memory of what this skill used to say, since standards-code is the maintained source and may have moved on.

Security Considerations

standards-security owns the concrete controls (input validation, parameterized queries, secrets handling, OWASP Top 10 mitigations). Load it whenever you touch authentication, authorization, untrusted input, or sensitive data. Do not implement security-sensitive code from memory.


Phase 3: Test

Write Comprehensive Tests

standards-testing owns the concrete conventions (AAA structure, test levels, what to test vs. skip, coverage targets by criticality). Load it before writing tests. Do not implement from memory, since coverage targets in particular are tiered by criticality there and a flat rule-of-thumb here would drift out of sync.

Independent of those conventions, always:

  • Think about testability while coding, not just after
  • Write tests before declaring the work done
  • Keep tests and code in sync as both evolve

Run tests frequently:

npm test          # Run all tests
npm test -- --watch  # Watch mode during development

Phase 4: Verify

Quality Checklist

Before considering work done:

  • Code follows standards (loaded standards-code?)
  • All tests written and passing
  • Edge cases covered
  • Error handling implemented
  • Security best practices applied (if applicable)
  • No obvious bugs or issues
  • Self-documenting code (clear names, structure)
  • Comments added for complex logic (WHY, not WHAT)
  • No console.logs or debug code left behind
  • Dependencies properly injected (testable)

Load relevant standards skills to verify:

skill(name: "standards-code")      # Verify code quality
skill(name: "standards-testing")   # Verify test coverage
skill(name: "standards-security")  # Verify security (if applicable)

Code Review Self-Check

Read your own code critically:

  • Is this easy to understand?
  • Could this be simpler?
  • Will future-me understand this?
  • Are there hidden assumptions?
  • What could break this?

If you struggle to explain it → Refactor it

Run Final Checks

# Tests pass
npm test

# Linter passes
npm run lint

# Type checks (if applicable)
npm run type-check

# Build succeeds (if applicable)
npm run build

All must pass before committing


Phase 5: Commit

Atomic Commits

One logical change per commit:

  • Easier to review
  • Easier to revert if needed
  • Clear history

Good commit message:

Add user authentication with JWT tokens

- Implement login/logout endpoints
- Add password hashing with bcrypt
- Create JWT token generation and validation
- Add authentication middleware
- Include unit and integration tests

Format:

  • First line: Concise summary (50 chars)
  • Blank line
  • Detailed bullets explaining changes
  • Focus on WHAT and WHY, not HOW

Commit after each completed task, not at end of day


Integration with Other Skills

With role-architect: Use architectural guidance for structure decisions With role-qa-engineer: Leverage testing expertise for comprehensive test strategy With role-security-auditor: Get security audit perspective for critical code With role-code-review: Self-review code before submitting


Common Patterns

Pattern 1: New Feature Implementation

1. Load standards: standards-code, standards-testing
2. Understand requirements
3. Plan approach (keep it simple)
4. Implement incrementally:
   - Write test (red)
   - Implement code (green)
   - Refactor (clean)
5. Verify quality checklist
6. Commit atomically

Pattern 2: Bug Fix

1. Load standards: standards-code, standards-testing
2. Reproduce bug with failing test first
3. Fix the bug (make test pass)
4. Verify fix doesn't break other tests
5. Consider edge cases (add more tests if needed)
6. Commit with clear description

Pattern 3: Refactoring

1. Load standards: standards-code, standards-testing
2. Ensure tests exist for current behavior
3. Refactor incrementally (tests stay green)
4. Verify tests still pass after each change
5. Commit each refactoring step
6. Final verification and cleanup

Best Practices Summary

DO (✅)

  • Always load relevant standards skills first
  • Write tests before declaring done
  • Keep functions small and focused (< 50 lines)
  • Use descriptive names
  • Handle errors explicitly
  • Validate input at boundaries
  • Make code self-documenting
  • Commit frequently with clear messages
  • Review your own code critically

DON'T (❌)

  • Skip loading standards skills
  • Skip tests ("I'll add them later")
  • Leave debug code or console.logs
  • Ignore error cases
  • Write God modules
  • Use global state
  • Commit broken tests
  • Commit without running tests
  • Over-engineer for future needs

Quick Start Checklist

Starting new implementation:

  • Loaded standards-code skill
  • Loaded standards-testing skill
  • Loaded standards-security skill (if needed)
  • Requirements and acceptance criteria clear
  • Store items loaded if referenced via [store:id]? (See tool-store skill)
  • Approach planned (simple solution)
  • Ready to implement with tests

Before committing:

  • All tests pass
  • Code follows standards
  • Edge cases covered
  • Error handling implemented
  • Self-reviewed for quality
  • No debug code left
  • Clear commit message ready

Remember

Standards skills are your reference guides - Load them explicitly before starting work.

Quality comes from discipline - Follow the workflow consistently.

Simple is better than clever - Write code others (and future-you) can understand.

Tests are not optional - They prove your code works and prevent regressions.

Commit often - Small, atomic commits are easier to review and revert.

When in doubt, ask - Better to clarify requirements than implement the wrong thing.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.