Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

agents

agents에는 carlopezzuto에서 수집한 skills 28개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
28
Stars
3
업데이트
2026-03-07
Forks
1
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

api-design-principles
소프트웨어 개발자

Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.

2026-03-07
async-python-patterns
소프트웨어 개발자

Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-blocking operations.

2026-03-07
auth-implementation-patterns
정보 보안 분석가

Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing APIs, or debugging security issues.

2026-03-07
bash-defensive-patterns
소프트웨어 개발자

Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.

2026-03-07
bats-testing-patterns
소프트웨어 품질 보증 분석가·테스터

Master Bash Automated Testing System (Bats) for comprehensive shell script testing. Use when writing tests for shell scripts, CI/CD pipelines, or requiring test-driven development of shell utilities.

2026-03-07
code-review-excellence
소프트웨어 품질 보증 분석가·테스터

Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing review standards, or mentoring developers.

2026-03-07
condition-based-waiting
소프트웨어 품질 보증 분석가·테스터

Use when tests have race conditions, timing dependencies, or inconsistent pass/fail behavior - replaces arbitrary timeouts with condition polling to wait for actual state changes, eliminating flaky tests from timing guesses

2026-03-07
debugging-strategies
소프트웨어 개발자

Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior.

2026-03-07
defense-in-depth
소프트웨어 개발자

Use when invalid data causes failures deep in execution, requiring validation at multiple system layers - validates at every layer data passes through to make bugs structurally impossible

2026-03-07
distributed-tracing
네트워크·컴퓨터 시스템 관리자

Implement distributed tracing with Jaeger and Tempo to track requests across microservices and identify performance bottlenecks. Use when debugging microservices, analyzing request flows, or implementing observability for distributed systems.

2026-03-07
e2e-testing-patterns
소프트웨어 품질 보증 분석가·테스터

Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky tests, or establishing testing standards.

2026-03-07
error-handling-patterns
소프트웨어 개발자

Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.

2026-03-07
grafana-dashboards
네트워크·컴퓨터 시스템 관리자

Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational observability interfaces.

2026-03-07
langchain-architecture
소프트웨어 개발자

Design LLM applications using the LangChain framework with agents, memory, and tool integration patterns. Use when building LangChain applications, implementing AI agents, or creating complex LLM workflows.

2026-03-07
llm-evaluation
데이터 과학자

Implement comprehensive evaluation strategies for LLM applications using automated metrics, human feedback, and benchmarking. Use when testing LLM performance, measuring AI application quality, or establishing evaluation frameworks.

2026-03-07
monorepo-management
소프트웨어 개발자

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

2026-03-07
prometheus-configuration
네트워크·컴퓨터 시스템 관리자

Set up Prometheus for comprehensive metric collection, storage, and monitoring of infrastructure and applications. Use when implementing metrics collection, setting up monitoring infrastructure, or configuring alerting systems.

2026-03-07
prompt-engineering-patterns
소프트웨어 개발자

Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing production prompt templates.

2026-03-07
python-packaging
소프트웨어 개발자

Create distributable Python packages with proper project structure, setup.py/pyproject.toml, and publishing to PyPI. Use when packaging Python libraries, creating CLI tools, or distributing Python code.

2026-03-07
python-testing-patterns
소프트웨어 품질 보증 분석가·테스터

Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.

2026-03-07
rag-implementation
소프트웨어 개발자

Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.

2026-03-07
root-cause-tracing
소프트웨어 품질 보증 분석가·테스터

Use when errors occur deep in execution and you need to trace back to find the original trigger - systematically traces bugs backward through call stack, adding instrumentation when needed, to identify source of invalid data or incorrect behavior

2026-03-07
security-review
정보 보안 분석가

Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.

2026-03-07
shellcheck-configuration
소프트웨어 개발자

Master ShellCheck static analysis configuration and usage for shell script quality. Use when setting up linting infrastructure, fixing code issues, or ensuring script portability.

2026-03-07
slo-implementation
네트워크·컴퓨터 시스템 관리자

Define and implement Service Level Indicators (SLIs) and Service Level Objectives (SLOs) with error budgets and alerting. Use when establishing reliability targets, implementing SRE practices, or measuring service performance.

2026-03-07
tdd-workflow
소프트웨어 품질 보증 분석가·테스터

Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.

2026-03-07
testing-anti-patterns
소프트웨어 품질 보증 분석가·테스터

Use when writing or changing tests, adding mocks, or tempted to add test-only methods to production code - prevents testing mock behavior, production pollution with test-only methods, and mocking without understanding dependencies

2026-03-07
verification-before-completion
소프트웨어 품질 보증 분석가·테스터

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs, when task are finished - requires running verification commands and confirming output before making any success claims; evidence before assertions always

2026-03-07