jpcaparas
- 129 skills
- 0 followers
- 7 hours ago last updated
- ▌
- ▌
- ▌
- ▌ Release Publisher 3 · jpcaparasValidate and publish an authorized release after resolving its repository and environment.
- ▌ Laravel Brainstorming · jpcaparasInteractive design refinement tailored to Laravel projects; clarify domain, data, interfaces, testing, and quality gates while accounting for Sail/non‑Sail environments
- ▌ Laravel Tdd With Pest · jpcaparasApply RED-GREEN-REFACTOR with Pest or PHPUnit; use factories, feature tests for HTTP, and parallel test runners; verify failures before implementation
- ▌ Laravel Writing Plans · jpcaparasCreate an actionable Laravel implementation plan—bite-sized tasks with TDD-first steps, migrations, services, jobs, and validation points
- ▌ Laravel Custom Helpers · jpcaparasCreate and register small, pure helper functions when they improve clarity; keep them organized and tested
- ▌ Laravel Daily Workflow · jpcaparasPractical daily checklist for Laravel projects; bring services up, run migrations, queues, quality gates, and tests
- ▌ Laravel E2e Playwright · jpcaparasGeneric E2E patterns with Playwright—state setup, seeds, test IDs, auth, environment, and Sail integration
- ▌ Laravel PHP Attributes · jpcaparasUse first-party PHP attributes (Laravel 13+) for controllers, authorization, queue jobs, and models; declarative configuration colocated with code
- ▌ Laravel Quality Checks · jpcaparasUnified quality gates for Laravel projects; Pint, static analysis (PHPStan/Psalm), Insights (optional), and JS linters; Sail and non-Sail pairs provided
- ▌ Laravel Bootstrap Check · jpcaparasDetect Sail/non‑Sail and print the right command pairs for your environment; verify dependencies and key services are reachable
- ▌ Laravel Executing Plans · jpcaparasExecute Laravel plans in small batches with checkpoints—TDD first, migrations safe, queues verified, and quality gates enforced
- ▌ Laravel Task Scheduling · jpcaparasSchedule tasks with safety; use withoutOverlapping, onOneServer, and visibility settings for reliable cron execution
- ▌ Laravel Controller Tests · jpcaparasWrite focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them
- ▌ Laravel Prompt Structure · jpcaparasStructure prompts for clarity—separate concerns, prioritize requests, specify acceptance criteria, and break work into testable increments
- ▌ Laravel Runner Selection · jpcaparasChoose Sail automatically when available, fall back cleanly to host PHP/Composer/Node; paired command map for both environments
- ▌ Laravel Strategy Pattern · jpcaparasUse the Strategy pattern to select behavior at runtime; bind multiple implementations to a shared interface
- ▌ Laravel AI Sdk · jpcaparasBuild AI features with the first-party Laravel AI SDK (Laravel 13+); agents, embeddings, images, audio, and tool calling with provider-agnostic APIs
- ▌ Laravel Debugging Prompts · jpcaparasCreate effective debugging prompts—include error messages, stack traces, expected vs actual behavior, logs, and attempted solutions
- ▌ Laravel Effective Context · jpcaparasProvide comprehensive context in prompts—files, errors, Laravel version, dependencies, and monorepo details—for accurate AI responses
- ▌ Laravel Interfaces And Di · jpcaparasUse interfaces and dependency injection to decouple code; bind implementations in the container
- ▌ Laravel Iterating On Code · jpcaparasRefine AI-generated code through specific feedback—point out errors, identify gaps, show desired changes, reference style guides
- ▌ Laravel Config Env Storage · jpcaparasPortable storage configuration across S3/R2/MinIO with optional CDN—env toggles, path-style endpoints, and URL generation
- ▌ Laravel Controller Cleanup · jpcaparasReduce controller bloat using Form Requests for auth/validation, small Actions/Services with DTOs, and resource/single-action controllers
- ▌ Laravel Ports And Adapters · jpcaparasUse hexagonal architecture for external systems; define ports (interfaces) and per-provider adapters; select adapter at composition edge
- ▌ Laravel Queues And Horizon · jpcaparasOperate and verify queues with or without Horizon; safe worker flags, failure handling, and test strategies
- ▌ Laravel Performance Caching · jpcaparasUse framework caches and value/query caching to reduce work; add tags, locks, and explicit invalidation strategies for correctness
- ▌ Laravel Code Review Requests · jpcaparasRequest effective code reviews—specify focus areas, provide context, ask for architectural feedback, reference Laravel conventions
- ▌ Laravel API Surface Evolution · jpcaparasEvolve APIs safely using versioned DTOs/transformers, deprecations, and compatibility tests
- ▌ Laravel Complexity Guardrails · jpcaparasKeep cyclomatic complexity low; flatten control flow, extract helpers, and prefer table-driven/strategy patterns over large switches
- ▌ Laravel Routes Best Practices · jpcaparasKeep routes clean and focused on mapping requests to controllers; avoid business logic, validation, or database operations in route files
- ▌ Laravel Upgrade 13 · jpcaparasUpgrade an app from Laravel 12.x to 13.x safely; PHP 8.3 baseline, dependency bumps, breaking-change checklist, and verification steps
- ▌ Laravel HTTP Client Resilience · jpcaparasUse the HTTP client with sensible timeouts, retries, and backoff; capture context and handle failures explicitly
- ▌ Laravel Nova Resource Patterns · jpcaparasConsistent Nova resources—fields, actions, metrics, lenses, filters, authorization—and how to evolve resources alongside schema changes
- ▌ Laravel Specifying Constraints · jpcaparasDefine clear constraints—performance, security, testing, architecture, dependencies—so AI generates code that meets your project standards
- ▌ Laravel Vector Search · jpcaparasAdd semantic search with native vector queries (Laravel 13+); pgvector similarity clauses, embedding workflows, and hybrid search patterns
- ▌ Laravel Migrations And Factories · jpcaparasSafe database change patterns; when to modify vs add migrations; always pair models with migrations and factories; seeding guidance
- ▌ Laravel Performance Eager Loading · jpcaparasPrevent N+1 queries by eager loading; enable lazy-loading protection in non-production; choose selective fields
- ▌ Laravel Using Examples In Prompts · jpcaparasProvide concrete examples—existing code patterns, style samples, input/output pairs—to guide AI toward your project's conventions
- ▌ Laravel Using Laravel Superpowers · jpcaparasRead first in Laravel repos; explains runner selection (Sail vs non-Sail), core workflows, and how to apply superpowers skills in Laravel projects without platform lock-in
- ▌ Laravel Dependencies Trim Packages · jpcaparasRemove unneeded Composer packages and assets to improve boot time, memory, and security surface
- ▌ Laravel Laravel Prompting Patterns · jpcaparasUse Laravel-specific vocabulary—Eloquent patterns, Form Requests, API resources, jobs/queues—to get idiomatic framework code
- ▌ Laravel Performance Select Columns · jpcaparasSelect only required columns to reduce memory and transfer costs; apply to base queries and relations
- ▌ Laravel Policies And Authorization · jpcaparasEnforce access via Policies and Gates; use authorize() and authorizeResource() to standardize controller protections
- ▌ Laravel Rate Limiting · jpcaparasApply per-user and per-route limits with RateLimiter and throttle middleware; use backoffs and headers for clients
- ▌ Laravel Request Forgery Protection · jpcaparasConfigure CSRF and origin-aware request forgery protection; PreventRequestForgery middleware (Laravel 13+) with token fallback and exclusions
- ▌ Laravel Constants And Configuration · jpcaparasReplace hardcoded values with constants, enums, and configuration for maintainability; use PHP 8.1+ enums and config files
- ▌ Laravel Filesystem Uploads · jpcaparasStore and serve files via Storage; set visibility, generate URLs, and handle streaming safely
- ▌ Laravel Template Method And Plugins · jpcaparasStabilize workflows with Template Method or Strategy; extend by adding new classes instead of editing core logic
- ▌ Laravel API Resources And Pagination · jpcaparasUse API Resources with pagination and conditional fields; keep response shapes stable and cache-friendly
- ▌ Laravel Blade Components And Layouts · jpcaparasCompose UIs with Blade components, slots, and layouts; keep templates pure and testable
- ▌ Laravel Data Chunking Large Datasets · jpcaparasProcess large datasets efficiently using chunk(), chunkById(), lazy(), and cursor() to reduce memory consumption and improve performance
- ▌ Laravel Documentation Best Practices · jpcaparasWrite meaningful documentation that explains why not what; focus on complex business logic and self-documenting code
- ▌ Laravel Form Requests · jpcaparasMove validation and authorization into Form Requests; use rule objects, custom messages, and nested data handling to keep controllers slim
- ▌ Laravel Transactions And Consistency · jpcaparasWrap multi-write operations in transactions; use dispatchAfterCommit and idempotency patterns to ensure consistency
- ▌ Laravel Exception Handling And Logging · jpcaparasUse reportable/renderable exceptions, structured logs, and channel strategy for observability and graceful failures
- ▌ Laravel Horizon Metrics And Dashboards · jpcaparasOperate Horizon with confidence—naming, tags, concurrency, failure handling, actionable metrics, and dashboards
- ▌ Laravel Eloquent Relationships · jpcaparasDefine clear relationships and load data efficiently; prevent N+1, use constraints, counts/sums, and pivot syncing safely
- ▌ Laravel Internationalization And Translation · jpcaparasBuild with i18n in mind from day one using Laravel translation helpers, JSON files, Blade integration, and locale management
- ▌ Linkedin Speak · jpcaparas bundleParodies text as LinkedIn-speak or reverses corporate-influencer fluff into blunt English. Use for LinkedIn-speak and corporate-cringe rewrites; skip real translation and serious editing.
- ▌ Scaffold Hooks · jpcaparas bundleRun /scaffold-hooks to audit, create, or refresh shared repository hooks for Claude Code, Codex, GitHub Copilot, Devin CLI, and OpenCode, together or individually. Skip Git hooks and Husky.
- ▌ Codex Subagents · jpcaparas bundleCoordinate bounded Codex subagents only when the user requests delegation, parallel agents, per-point reviews, multi-agent plans, or custom agents. Skip other harnesses, trivial work, and requests without delegation authority.
- ▌
- ▌ Tweet Replicate · jpcaparas bundleRebuild a public X/Twitter status into a deterministic local replica with frozen assets, HTML/CSS, Playwright capture, MP4, and GIF. Trigger on replicate tweet, X post to MP4, make tweet GIF, or freeze status locally. Do NOT use for text extraction, auth pages, or DMs.
- ▌ Maintainable App · jpcaparas bundleGuide resilient production-app code involving jobs, queues, webhooks, persistence, APIs, retries, concurrency, observability, idempotency, backpressure, degradation, or stuck work. Skip non-code writing, throwaway scripts, and visual-only mockups.
- ▌ Oneshot Websites · jpcaparas bundleRun ambitious one-shot websites, web apps, games, simulations, clones, motion pieces, or benchmarks through fresh isolated subagents. Use for one-shot web artifacts, catalogue ideas, or parallel model/harness variants.
- ▌ Product Question · jpcaparas bundleAnswer product, PM, stakeholder, or non-engineer questions about app behavior by inspecting code and returning a share-ready plain-English answer. Trigger on product question, PM question, stakeholder answer, how a feature works, or why the app behaves that way. Do NOT use for code changes.
- ▌ Sprite Decompose · jpcaparas bundleDecompose existing sprite sheets or illustration contact sheets on flat or gently varying backgrounds into cropped transparent PNGs with reviewed grouping, bounds manifest, and validation. Skip generation, atlas packing, and hidden-pixel reconstruction.
- ▌ Synthetic Search · jpcaparas bundleUse Synthetic Search or the Synthetic API (`api.synthetic.new`, `SYNTHETIC_API_KEY`) for zero-data-retention web search, curl/jq examples, quota checks, and a small Node helper. Do NOT use for browser automation, crawling, or unrelated search providers.
- ▌ Maintainable Code · jpcaparas bundleGuide maintainable code with clear names, decomposition, safe defaults, side-effect guardrails, compatibility, comments, and quality gates. Use for production code, refactors, reviews, plans, CI, scripts, config, tests, or technical debt. Skip disposable work.
- ▌ Maintainable Tests · jpcaparas bundleGuide maintainable tests as behavior documentation with isolated side effects, compatibility coverage, and reliable assertions. Use for tests, fixtures, mocks, regressions, reviews, and testability changes. Skip disposable work.
- ▌ Temporal Awareness · jpcaparas bundleUse for latest/current/recent/today/yesterday/tomorrow questions, changing models, versions, prices, schedules, executives, laws, weather, scores, or other time-sensitive facts. Ground answers in clock and timezone, verify live when needed, and convert relative dates. Do NOT use for stable history.
- ▌
- ▌ Instagram Replicate · jpcaparas bundleRebuild one public Instagram video post or reel into a deterministic local replica with frozen assets, HTML/CSS, Playwright capture, MP4, and GIF. Trigger on replicate Instagram, reel to MP4, or freeze video locally. Do NOT use for captions, private/auth pages, carousels, Stories, or DMs.
- ▌ Lean Text Scaffolding · jpcaparas bundlePrevent bloated text scaffolds in new web pages. Use when creating or refactoring landing pages, SaaS pages, dashboards, marketing sections, UI copy, placeholders, labels, eyebrow text, or feature cards. Remove generic labels unless explicitly requested. Do NOT use for prose-only articles, legal copy, or exact client-provided copy.
- ▌ Adversarial Test Sweep · jpcaparas bundleRun a bounded adversarial sweep of an existing test suite. Use to harden a suite or subsystem against malformed inputs, boundaries, invalid state, races, dependency/resource failures, weak or redundant tests, flakes, and missing durable regressions. Skip ordinary test additions, load, chaos, and penetration testing.
- ▌ Implicit Token Savings · jpcaparas bundleUse compact, low-noise shell commands for repo exploration, git status/diff/log, tests, containers, and file search. Trigger on token savings, terse shell workflow, rg, tree, pytest, npm test, cargo test, go test, or docker ps. Do NOT use when full output is requested.
- ▌ Interface Design Taste · jpcaparas bundleDesign high-quality product apps, marketing sites, dashboards, and desktop UI. Use for art direction, critique, redesign, hierarchy, layout, typography, color, motion, or lightweight design systems. Do NOT use for logos, illustration-only work, image prompts, or backend-only tasks.
- ▌ Nanobanana Infographic · jpcaparas bundleCreate sleek, low-noise infographic prompts and render workflows with Nano Banana 2 for posts, decks, reports, and explainers. Trigger on infographic, Nano Banana 2, Gemini image, executive visual, blog diagram, or presentation visual. Do NOT use for logos, memes, or raw dashboards.
- ▌ Repo Intent Documenter · jpcaparas bundleCreate evidence-backed repository intent docs for AI coding agents, including certainty levels, evidence anchors, open questions, and review workflow. Trigger on document repo intent, REPO_INTENT.md, or what this repo is for. Do NOT use for ordinary README polishing.
- ▌ Secure AI Agent Coding · jpcaparas bundleBuild, review, or harden AI agents, LLM apps, RAG, tool-calling, coding agents, and agentic workflows with secure-by-default controls. Trigger on prompt injection, tool permissions, approvals, AI data handling, RAG poisoning, observability, or safety CI. Do NOT use for non-AI appsec.
- ▌ Skill Creator Advanced · jpcaparas bundleCreate, harden, and curate production-grade installable skills and skill libraries. Use for API/CLI/reference skills, invocation design, progressive disclosure, evals, placement, promotion, renames, deprecation, or catalog/router consistency. Skip trivial one-file utilities.
- ▌ Claude Code Auto Advisor · jpcaparas bundleClaude Code automatic advisor for security, reviews, high-risk design, substantial multi-step plans, complex refactors, recurring failures, and risky completion checks. Skip trivial work, ordinary planning, other harnesses, or sessions without an advisor tool.
- ▌ Make My Code Flirtatious · jpcaparas bundleExplains code flirtatiously without losing accuracy. Use for flirty or sultry code explanations; skip ordinary explanations, code edits, and explicit sexual content.
- ▌ Oneshot Prompt Generator · jpcaparas bundleTurn supplied websites, apps, images, media, documents, code, or mixed references into a self-contained replication prompt for a fresh session. Default to a website/web app unless another target is named. Skip implementation, rendering, and summaries.
- ▌ Repository Readme Writer · jpcaparas bundleCreate or improve concise, useful, agent-safe repository READMEs. Use for new README drafts, rewrites, quickstarts, local setup, getting started, contributor docs, or README reviews. Do NOT use for API reference, full product docs, changelogs, or landing pages.
- ▌ Azure Devops Wiki Markdown · jpcaparas bundleWrite, fix, or review Azure DevOps wiki Markdown, Mermaid, _TOC_, _TOSP_, details blocks, query tables, mentions, work-item links, KaTeX, videos, and code fences. Use for Azure DevOps surface quirks. Do NOT use for GitHub-only or non-Azure docs.
- ▌ Client Report From Commits · jpcaparas bundleTurn git commits and diffs since an exact date into a copy-pastable, non-technical client report grouped by feature. Use for client updates, weekly progress, stakeholder recaps, or high-level git-history summaries. Do NOT use when the date is ambiguous.
- ▌ Heuristic To Deterministic · jpcaparas bundleConvert repeated heuristics into deterministic behavior: validator scripts, normalizer tools, generators, fixtures, manifests, CI jobs, and hook-ready checks. Use to codify learnings and prevent future guessing. Do NOT use for pure brainstorming or one-off edits.
- ▌ Youtube Transcript Dossier · jpcaparas bundleConvert a YouTube video transcript into a structured dossier: metadata, executive summary, timestamped key topics, notable quotes, takeaways, follow-ups. Trigger on: YouTube dossier, video to notes, transcript to summary, summarize YouTube video. Do NOT trigger for non-YouTube video, audio transcription, or downloading video files.
- ▌ Simplified Technical English · jpcaparas bundleRewrite or audit ASD-STE100 procedures, descriptions, and safety instructions while preserving technical meaning and exact literals.
- ▌ Azure Devops Create Work Item · jpcaparas bundleDraft local Azure DevOps work item packets from loose context, defaulting to Scrum PBI unless Bug, Feature, User Story, Task, Issue, or Epic is specified. Inspect repo context when present. Do NOT use for live REST/CLI creation, migration, wiki, or status reporting.
- ▌ Google Search AI Optimization · jpcaparas bundleGoogle-grounded SEO/GEO implementation for Search, AI Overviews, AI Mode, crawlability, indexability, snippets, structured data, ecommerce/local details, and agent browsing. Do NOT use for paid ads, rank tracking, non-Google directory tactics, or link schemes.
- ▌ Travel Plan Spreadsheet Generator · jpcaparas bundleCreate .xlsx travel workbooks with itinerary, preparation, or shopping sheets for trip, holiday, or conference planning. Skip prose itineraries, recommendation chat, and calendar-only scheduling.
- ▌ Scaffold Github Cloud Agent Environment · jpcaparas bundleAudit and scaffold `.github/workflows/copilot-setup-steps.yml` for GitHub Copilot cloud agent environments. Use for missing or broken setup workflows, runner/firewall/dependency/LFS/proxy issues, or Copilot setup repair. Do NOT use for generic GitHub Actions.
- ▌ Overgrown Skill · jpcaparas bundleHelps with releases, publishing, shipping, setup, debugging releases, fixing publish problems, and anything related to releasing. Use whenever release, publish, ship, deployment, setup, or debugging is mentioned.
- ▌ Half Finished Skill · jpcaparas bundleTODO: describe when this package-checking skill should trigger
- ▌ Provider API Helper · jpcaparas bundleCall the Orbit provider API to inspect projects and deployments.