← all publishers

paulpas

@paulpas source repo

1321 published skills · page 2 of 14

  1. Terraform Infrastructure · paulpas
    Implements intelligent terraform infrastructure with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  2. Solid Ocp Pattern · paulpas
    Implements the Open/Closed Principle (OCP) from SOLID design principles, allowing classes to be open for extension but closed for modification.
    0
    installs
  3. Solid Srp Pattern · paulpas
    Implements the Single Responsibility Principle (SRP) from SOLID, ensuring a class has one reason to change.
    0
    installs
  4. Kyverno Label Enforcement · paulpas
    Enforces required labels on Pods and Namespaces using Kyverno validate rules with pattern matching and CEL expressions for compliance tracking.
    0
    installs
  5. Kyverno Policy Generation · paulpas
    Implements Kyverno generate rules to automatically create or modify Kubernetes resources (ResourceQuota, LimitRange, NetworkPolicy) on namespace creation.
    0
    installs
  6. Kyverno Secret Validation · paulpas
    Validates Kubernetes Secrets meet security requirements by checking secret types, enforcing labeling standards, and preventing legacy service-account-token usage.
    0
    installs
  7. Process Incident Response · paulpas
    "Creates or updates an incident response plan covering detection, triage" communication, and post-incident review for CNCF projects
    0
    installs
  8. AI Assisted Code Review · paulpas
    Orchestrates AI-augmented code review workflows combining LLM-based analysis with human judgment for comprehensive PR quality assurance in modern development teams.
    0
    installs
  9. AI Assisted Engineering · paulpas
    Implements AI pair programming workflows (spec-first prompting, code review, LLM test generation, prompt engineering) to integrate LLMs into development pipelines safely and productively.
    0
    installs
  10. API Pagination Patterns · paulpas
    Implements pagination strategies for API endpoints including cursor-based keyset pagination, offset-based pagination, relay-style connection patterns, and performance optimization techniques to handle large datasets without N+1 queries or memory exhaustion.
    0
    installs
  11. Authentication Patterns · paulpas
    Implements production-grade authentication systems including password hashing (bcrypt/argon2), JWT token lifecycle, OAuth 2.0 PKCE flows, secure session management, and MFA/TOTP for multi-factor verification.
    0
    installs
  12. Chain Of Responsibility · paulpas
    Implements the GoF Chain of Responsibility pattern for building middleware-style request handler pipelines in Python where each handler processes or forwards requests along a configurable chain.
    0
    installs
  13. Ddd Aggregate Lifecycle · paulpas
    Implements aggregate lifecycle management patterns — snapshotting, schema versioning, optimistic concurrency control, aggregate root splitting strategies, and consistency boundary enforcement for high-throughput domain-driven systems.
    0
    installs
  14. Domain Driven Strategic · paulpas
    Maps bounded contexts using context mapping patterns (Customer/Supplier, Shared Kernel, ACL, Open Host Service) and facilitates Event Storming sessions to discover architecture boundaries in complex domains.
    0
    installs
  15. Ds Categorical Encoding · paulpas
    "Provides Encodes categorical variables using one-hot encoding, target encoding, ordinal encoding, embeddings, and other encoding strategies"
    0
    installs
  16. Ds Confidence Intervals · paulpas
    "Provides Constructs confidence intervals using bootstrap, analytical methods, and uncertainty quantification for parameter estimation"
    0
    installs
  17. Ds Correlation Analysis · paulpas
    "Analyzes correlation, covariance, and multivariate relationships between variables using statistical methods and visualization techniques"
    0
    installs
  18. Ds Distribution Fitting · paulpas
    "Provides Fits statistical distributions to data using goodness-of-fit tests, parameter estimation, and distribution selection methods"
    0
    installs
  19. Ds Model Interpretation · paulpas
    "Provides Interprets models using SHAP values, LIME, feature importance permutation importance, and other explainability techniques"
    0
    installs
  20. Error Handling Patterns · paulpas
    Implements modern error handling patterns (Result types, error wrapping, retry with backoff, circuit breakers, panic recovery) to eliminate unchecked exceptions and silent failures in production systems.
    0
    installs
  21. Event Schema Versioning · paulpas
    Implements event schema versioning strategies (semantic versioning, forward/backward compatibility, schema registry, deprecation lifecycle) to evolve event contracts in production event-driven systems without breaking consumers.
    0
    installs
  22. Framework Driven Design · paulpas
    Implements framework-driven design patterns (Inversion of Control, Dependency Injection, lifecycle hooks, plugin architectures) to build extensible applications that leverage modern framework constraints instead of bypassing them.
    0
    installs
  23. Immutable Data Patterns · paulpas
    Implements immutable data patterns (value objects, pure functions, structural updates, copy-on-write collections, domain events) to eliminate mutation bugs and enable safe concurrent data processing.
    0
    installs
  24. Karpathy Coding Mindset · paulpas
    Applies Karpathy's pre-implementation discipline — state assumptions explicitly, surface tradeoffs instead of hiding them, push back on unnecessary complexity, and write minimum code that solves the problem with no speculative features or premature abstractions.
    0
    installs
  25. Markdown Best Practices · paulpas
    "Provides Markdown best practices for OpenCode skills - syntax rules, common pitfalls, and coding practices for documentation consistency"
    0
    installs
  26. Modern Python Packaging · paulpas
    Configures modern Python packaging with uv, hatchling, pyproject.toml, and dependency resolution for reproducible builds in 2025+.
    0
    installs
  27. Python Module Structure · paulpas
    Designs and organizes Python package directory structures, __init__.py export patterns, type stubs (.pyi), pyproject.toml metadata, and import management following PEP 420 and PEP 561 conventions for production packages.
    0
    installs
  28. React Advanced Patterns · paulpas
    Implements advanced React patterns including render props, higher-order components, custom hooks composition, portals, error boundaries, and ref forwarding for complex component architectures.
    0
    installs
  29. React Native Navigation · paulpas
    Implements navigation in React Native using React Navigation with type-safe TypeScript configuration, deep linking, screen lifecycle management, and performance optimization.
    0
    installs
  30. REST API Error Handling · paulpas
    Implements RFC 7807 Problem Details error responses with proper HTTP status code dispatch, structured validation errors, and machine-readable error URIs for production REST APIs.
    0
    installs
  31. Secure Release Pipeline · paulpas
    Implements comprehensive secure release pipeline with CVE scanning, security code review, semantic versioning for patches, and multi-stage quality gates for secure deployments.
    0
    installs
  32. Single Letter Variables · paulpas
    Analyzes variable names to detect ambiguous single-letter identifiers and recommends readable alternatives based on scope, context, and language conventions.
    0
    installs
  33. Software Error Handling · paulpas
    Implements structured error handling (custom exception hierarchies, retry with backoff, circuit breaker, graceful degradation) for resilient, diagnosable, and recoverable software systems.
    0
    installs
  34. Spring Boot Auto Config · paulpas
    Implements Spring Boot auto-configuration mechanics, externalized config binding with @ConfigurationProperties, custom starter development with conditional annotations, and Actuator endpoint customization for production-ready applications.
    0
    installs
  35. Template Method Pattern · paulpas
    Implements the GoF Template Method pattern for defining algorithm skeletons in Python ABCs with customizable hook methods, comparing inheritance-based templating vs composition-based strategy selection.
    0
    installs
  36. Test Driven Development · paulpas
    Implements test-driven development with red-green-refactor cycle, property-based testing, mocking strategies, and behavior-first design to produce well-tested, maintainable code.
    0
    installs
  37. Trunk Based Development · paulpas
    Implements trunk-based development workflows with feature flag gating, short-lived branching strategies, and automated CI to keep main always deployable.
    0
    installs
  38. Type Safety Enforcement · paulpas
    Enforces strong type safety across software systems using static typing, generics, custom types, strict null checking, and compile-time validation to eliminate entire categories of runtime errors.
    0
    installs
  39. Typescript Intersection · paulpas
    Composes TypeScript types using the & intersection operator, combining interfaces, utility types, and object shapes while managing type compatibility, variance, and never-type pitfalls.
    0
    installs
  40. Vercel CLI Token Deploy · paulpas
    Deploys projects to Vercel using the Vercel CLI with token-based authentication for CI/CD environments, preview deployments, and production releases.
    0
    installs
  41. Containerization Devops · paulpas
    Implements best practices for containerization in the DevOps lifecycle, focusing on deployment, orchestration, and management of containerized applications.
    0
    installs
  42. Shell Process Management · paulpas
    Manages Linux background processes, parallel execution, and job control using &, jobs, fg, bg, wait, xargs -P, and GNU parallel for shell scripting.
    0
    installs
  43. For Loop Iteration · paulpas
    Teaches idiomatic for loop patterns across Python, JavaScript, Go, C/C++, Rust, and shell scripting with anti-patterns, common pitfalls, and best practices.
    0
    installs
  44. AI Feature Engineering · paulpas
    "Implements create actionable trading features from raw market data for risk management and algorithmic trading execution."
    0
    installs
  45. AI Order Flow Analysis · paulpas
    "Provides Analyze order flow to detect market pressure and anticipate price moves"
    0
    installs
  46. Data Backfill Strategy · paulpas
    "Provides Strategic data backfill for populating historical data in trading systems"
    0
    installs
  47. Data Stream Processing · paulpas
    "Provides Streaming data processing for real-time trading signals and analytics"
    0
    installs
  48. Exchange Ccxt Patterns · paulpas
    "Effective patterns for using CCXT library for exchange connectivity including" error handling, rate limiting, and state management
    0
    installs
  49. Exchange Rate Limiting · paulpas
    "Rate Limiting Strategies and Circuit Breaker Patterns for Exchange API" Integration
    0
    installs
  50. Paper Commission Model · paulpas
    "Implements commission model and fee structure simulation for risk management and algorithmic trading execution."
    0
    installs
  51. Agent Security Guardrails · paulpas
    Implements prompt injection detection, input validation, tool access control, and output sanitization to secure LLM agents against adversarial attacks.
    0
    installs
  52. Cc Skill Backend Patterns · paulpas
    Implements intelligent cc skill backend patterns with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  53. Cc Skill Coding Standards · paulpas
    Implements intelligent cc skill coding standards with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  54. Code Correctness Verifier · paulpas
    Implements intelligent code correctness verifier with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  55. Confidence Based Selector · paulpas
    Implements intelligent confidence based selector with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  56. Context Window Management · paulpas
    Implements intelligent context window management with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  57. Developer Pattern Library · paulpas
    Curates and maintains a personal library of validated code patterns, solutions, and anti-patterns accumulated through development experience, enabling faster problem-solving on future tasks.
    0
    installs
  58. Hierarchical Agent Memory · paulpas
    Implements intelligent hierarchical agent memory with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  59. Multi Agent Collaboration · paulpas
    Orchestrates multiple specialized agents in concert using hierarchical, parallel, and sequential topologies (parent-child, debate/consensus, expert teams, sequential handoffs) to solve complex problems that exceed single-agent capability.
    0
    installs
  60. Multi Agent Orchestration · paulpas
    Orchestrates multi-agent workflows (sequential pipelines, supervisor-worker delegation, group chat coordination, parallel task execution with result synthesis) for complex AI system coordination.
    0
    installs
  61. Skill Architecture Design · paulpas
    Designs atomic AI agent skill architecture using granularity heuristics, monolith detection algorithms, and network topology patterns to produce modular, independently-testable skill sets that maximize router matching precision.
    0
    installs
  62. Skill Testing Methodology · paulpas
    Validates AI agent skills through trigger precision/recall measurement, structural output checks, and edge case detection to prevent broken or misleading skills from reaching production.
    0
    installs
  63. Skill Trigger Engineering · paulpas
    Designs optimized trigger sets using a two-tier strategy combining technical terms with conversational variants, prevents false-positive activation, and ensures discoverability across expert and non-technical audiences.
    0
    installs
  64. Task Decomposition Engine · paulpas
    Implements intelligent task decomposition engine with multi-factor skill selection, fallback chains, and adherence to the 5 Laws of Elegant Defense
    0
    installs
  65. Tool Use Function Calling · paulpas
    Implements agent tool use and function calling patterns (@tool decorators, CrewAI tools, Google ADK built-in tools) to enable agents with real-time external data access, API operations, calculations, and code execution.
    0
    installs
  66. Cost Optimization Analysis · paulpas bundle
    Cloud cost optimization analysis including AWS Cost Explorer, Azure Cost Management, and GCP Billing with right-sizing recommendations and optimization strategies for multi-cloud environments
    0
    installs
  67. Kubernetes Resource Tuning · paulpas
    Implements Kubernetes resource tuning — HPA scaling policies, VPA right-sizing, cluster autoscaler configuration, and resource limits/requests optimization for production container workloads.
    0
    installs
  68. Networking Troubleshooting · paulpas
    Implements comprehensive networking troubleshooting workflows for cloud-native environments including iptables debugging, DNS resolution, load balancer configuration, Kubernetes CNI, container networking, and VPN connectivity analysis
    0
    installs
  69. Agent Evaluation Testing · paulpas
    Builds evaluation harnesses for AI agents — LLM-as-judge scoring, tool-use accuracy validation, multi-turn conversation testing, and prompt injection detection in production-ready Python.
    0
    installs
  70. Agent Planning Reasoning · paulpas
    Implements planning and reasoning patterns for LLM agents including ReAct loops with native tool calling, modern LangGraph state graphs, and self-reflection quality evaluation loops.
    0
    installs
  71. API Composition Patterns · paulpas
    Implements API composition patterns for orchestrating concurrent calls across multiple microservices including parallel aggregation, timeout isolation, partial failure handling, circuit breaker per dependency, query fan-out, and schema transformation for unified client responses.
    0
    installs
  72. API Development Patterns · paulpas
    Implements practical API development patterns including REST conventions, GraphQL design, error handling strategies, OpenAPI-first workflow, and versioning strategies for production-ready APIs.
    0
    installs
  73. AWS Dynamodb Integration · paulpas
    Implements AWS DynamoDB functionalities, showcasing data modeling, queries, and performance optimization using the AWS SDK.
    0
    installs
  74. Cicd Build Orchestration · paulpas
    Orchestrates builds in CI/CD pipelines with multi-stage builds, artifact caching, containerized builds, build matrices, parallel execution, and automated deployment strategies (GitHub Actions, GitLab CI, Jenkins) for efficient and reliable software delivery.
    0
    installs
  75. Cloud Ecosystem Strategy · paulpas
    Strategizes cross-cloud ecosystem navigation (AWS, Azure, GCP) with vendor lock-in analysis, interoperability patterns, cost optimization frameworks, and multi-cloud architecture decision making.
    0
    installs
  76. Configuration Management · paulpas
    Implements modern Python configuration management including layered config resolution, schema validation with Pydantic, environment-specific overrides, and secrets injection for production-grade applications.
    0
    installs
  77. Data Validation Patterns · paulpas
    Implements comprehensive data validation and sanitization (schema validation with pydantic, type coercion safety, input sanitization, output encoding, transformation pipelines) to ensure data integrity throughout software systems.
    0
    installs
  78. Database Design Modeling · paulpas
    Designs relational database schemas with proper normalization, indexing strategies, versioned migrations, and constraint enforcement for scalable application backends.
    0
    installs
  79. Design Pattern Selection · paulpas
    Evaluates software problems against the GoF pattern catalog to select optimal design patterns based on structural requirements, complexity constraints, and runtime performance characteristics.
    0
    installs
  80. Ds Hyperparameter Tuning · paulpas
    "Optimizes hyperparameters using grid search, random search, Bayesian optimization, and evolutionary methods for model improvement"
    0
    installs
  81. Ds Intervention Analysis · paulpas
    "Provides Estimates treatment effects, conditional average treatment effects (CATE), heterogeneous effects, and individual treatment responses"
    0
    installs
  82. Ds Observational Studies · paulpas
    "Analyzes observational data using matching methods, propensity scores stratification, and adjustment for confounding bias"
    0
    installs
  83. Ds Regression Evaluation · paulpas
    "Evaluates regression models using MSE, RMSE, MAE, MAPE, R-squared and other metrics for assessing predictive accuracy"
    0
    installs
  84. Ds Reproducible Research · paulpas
    "Implements reproducible research practices including code organization environment management, documentation, and experiment tracking"
    0
    installs
  85. Git Branching Strategies · paulpas
    "Git branching models including Git Flow, GitHub Flow, Trunk-Based Development" and feature flag strategies for CI/CD pipelines
    0
    installs
  86. Langgraph Implementation · paulpas
    Implements LangGraph stateful agent workflows including state graphs, conditional routing, checkpointing, human-in-the-loop approval, and persistence patterns for building reliable multi-step AI agent applications.
    0
    installs
  87. Performance Optimization · paulpas
    Identifies and eliminates performance bottlenecks through systematic profiling (cProfile, py-spy, memory_profiler), Big-O complexity analysis, algorithmic optimization, and benchmark-driven validation to reduce latency and resource usage.
    0
    installs
  88. React Native UI Patterns · paulpas
    Implements responsive, accessible, and consistent UI components in React Native using Flexbox layouts, theme systems with dark mode support, platform-specific styling, and safe area handling.
    0
    installs
  89. React Server Performance · paulpas
    Optimizes React server rendering performance using Server Components, streaming SSR with Suspense boundaries, React.cache deduplication, static generation, and ISR caching strategies.
    0
    installs
  90. Skill Testing Validation · paulpas
    Implements testing strategies for verifying AI skill quality including content validation, trigger matching tests, integration checks, and automated regression detection.
    0
    installs
  91. Software Maintainability · paulpas
    Implements long-term codebase maintainability strategies including refactoring cadences, complexity budgets, dependency freshness monitoring, and sustainable development velocity to prevent architectural decay.
    0
    installs
  92. Tool Evaluation Workflow · paulpas
    Applies a structured evaluation framework to select tools, libraries, and frameworks based on technical fit, community health, security posture, performance benchmarks, and total cost of ownership for software projects.
    0
    installs
  93. UX Design For Developers · paulpas
    Implements UX design patterns and accessibility standards for backend engineers building user-facing features, covering user flows, responsive layouts, WCAG compliance, and usability heuristics.
    0
    installs
  94. Web Interface Guidelines · paulpas
    Applies comprehensive web interface design guidelines covering layout, typography, color, accessibility, responsive design, and UX patterns for consistent, user-friendly interfaces.
    0
    installs
  95. Shell Parameter Expansion · paulpas
    Applies bash parameter expansion operators (default values, error messages, substitution, pattern matching, case modification) to write robust shell scripts that safely handle unset variables and edge cases.
    0
    installs
  96. Locust · paulpas
    Implements load testing strategies using Locust to simulate user behavior and assess application performance, ensuring that systems are prepared for real-world traffic conditions effectively while providing actionable insights for optimization, scalability, and performance validation.
    0
    installs
  97. Backtest Lookahead Bias · paulpas
    "Preventing lookahead bias in backtesting through strict causality enforcement" time-based validation, and comprehensive detection frameworks.
    0
    installs
  98. Backtest Position Exits · paulpas
    "Exit strategies, trailing stops, and take-profit mechanisms for trading" systems.
    0
    installs
  99. Execution Rate Limiting · paulpas
    "Provides Rate Limiting and Exchange API Management for Robust Trading Execution"
    0
    installs
  100. Technical Documentation · paulpas bundle
    Writes clear, structured technical documentation including READMEs, API docs, getting-started guides, and architectural overviews following industry conventions and developer experience best practices.
    0
    installs