← all publishers

Aaryan1524

@aaryan1524 source repo

37 published skills

  1. Editor Deep Links · aaryan1524 bundle
    Build, validate, and troubleshoot deep links for Codex, Cursor, VS Code, Visual Studio, and similar tools. Use when users ask for clickable links (especially in Slack) that open threads, files, folders, or app settings.
    0 installs
  2. Repo Intelligence · aaryan1524
    Use when entering an unfamiliar codebase, onboarding to a new project, or wanting to assess codebase health before reading code — analyzes git history to reveal hotspots, risk areas, team structure, and development momentum
    0 installs
  3. Software Delivery · aaryan1524 bundle
    Coordinate substantial software work from requirements through implementation, verification, and an authorized release. Use for building a product, delivering a feature across components, or coordinating a complex repair or migration. Also supports explicit plan-only, diagnosis-only, review, and resume requests. Ordinary small edits and standalone programming questions do not need this workflow.
    0 installs
  4. Business Artifacts · aaryan1524 bundle
    Generate PPTX presentations, DOCX documents, XLSX spreadsheets, and PDF reports from structured JSON input using PaperJSX.
    0 installs
  5. Engineering Review · aaryan1524
    Engineering Review Router
    0 installs
  6. Langsmith Analysis · aaryan1524
    Debug LangChain and LangGraph agents by fetching execution traces from LangSmith Studio. Use when debugging agent behavior, investigating errors, analyzing tool calls, checking memory operations, or examining agent performance. Automatically fetches recent traces and analyzes execution patterns. Requires langsmith-fetch CLI installed.
    0 installs
  7. Team Communications · aaryan1524 bundle
    Draft internal communications in established company formats, including status reports, leadership updates, 3P updates, newsletters, FAQs, incident reports, and project updates. Use when the user asks to prepare—not automatically send—an internal communication.
    0 installs
  8. Workspace Organizer · aaryan1524
    Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.
    0 installs
  9. Codex Migration Audit · aaryan1524
    Audit Claude Code to Codex harness migrations, including AGENTS.md/CLAUDE.md scope, hooks, MCP config, skills, secrets, and validation notes. Use after a Codex import or Bring Your AI migration before letting Codex edit code.
    0 installs
  10. Pr Comment Resolution · aaryan1524 bundle
    Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.
    0 installs
  11. CI Repair · aaryan1524 bundle
    Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope.
    0 installs
  12. Webapp QA · aaryan1524 bundle
    Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
    0 installs
  13. Lead Intel · aaryan1524
    Identifies high-quality leads for your product or service by analyzing your business, searching for target companies, and providing actionable contact strategies. Perfect for sales, business development, and marketing professionals.
    0 installs
  14. Brooks Debt · aaryan1524 bundle
    Tech debt assessment that identifies, classifies, and prioritizes maintainability problems — helping teams build a refactoring roadmap — drawing on twelve classic engineering books. Triggers when: user asks about tech debt, refactoring priorities, what to clean up first, or asks "why is this so hard to change?", "what should we fix first?", or "how do I justify refactoring to management?". Do NOT trigger for: server health checks, HTTP /health endpoints, Kubernetes probes, database health, or application uptime — "health" in those contexts is infrastructure, not code quality. Also not for single-function refactoring questions.
    0 installs
  15. Brooks Test · aaryan1524 bundle
    Test quality review drawing on twelve classic engineering books — with primary focus on xUnit Test Patterns, The Art of Unit Testing, How Google Tests Software, and Working Effectively with Legacy Code — that diagnoses structural problems in an existing test suite: brittleness, mock abuse, coverage illusions, slow execution, poor readability. Triggers when: user asks about test quality, shares test files for review, or expresses frustration: "tests keep breaking whenever I change anything", "our tests take forever", "tests pass but bugs still reach production", or "we have too many mocks". Do NOT trigger for: writing new tests from scratch (use the regular test-writing workflow) or testing framework/syntax questions — this skill reviews an existing suite for structural quality problems, not individual test authoring.
    0 installs
  16. Brooks Audit · aaryan1524 bundle
    Architecture audit that maps module dependencies, checks layering integrity, and flags structural decay across a codebase, drawing on twelve classic engineering books. Triggers when: user asks to audit architecture, review folder/module structure, check for circular imports, understand how the codebase is organized, or asks "does this follow clean architecture?" or "why does everything depend on everything?". Also triggers for onboarding requests: "explain this codebase to a new developer" or "give me a codebase tour" (use onboarding mode). Do NOT trigger for: PR-level code review (use brooks-review) or line-level refactoring questions — this skill analyzes structural/module-level concerns, not individual functions.
    0 installs
  17. Brooks Sweep · aaryan1524 bundle
    Full-sweep mode: runs a unified analysis across all quality dimensions — code decay, architecture, tech debt, and test quality — then applies fixes directly to the codebase. Safe changes are auto-applied; risky changes are confirmed before execution. Drawing on twelve classic engineering books. Triggers when: user wants to "fix everything", "sweep the codebase", "auto-fix all issues", "clean up the whole project", or asks for a single command that both diagnoses and remediates quality problems. Do NOT trigger for: read-only audits or health reports where the user only wants findings without code changes; single-dimension reviews (use the focused skill instead: brooks-review / brooks-audit / brooks-debt / brooks-test); server health checks, HTTP /health endpoints, Kubernetes probes, database health, or application uptime.
    0 installs
  18. Image Polish · aaryan1524
    Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.
    0 installs
  19. Product Plan · aaryan1524 bundle
    Create a concise plan. Use when a user explicitly asks for a plan related to a coding task.
    0 installs
  20. Brooks Health · aaryan1524 bundle
    Combined codebase health dashboard that scores a project across all four quality dimensions — PR quality, architecture, tech debt, and test quality — in a single pass, drawing on twelve classic engineering books. Triggers when: user wants an overall quality assessment, asks "how healthy is this codebase?", "run all the checks", "I need a health score before the release", or wants to onboard a new team with a quality overview. Do NOT trigger for: server health checks, HTTP health endpoints, Kubernetes liveness/readiness probes, database health, or application uptime. Also do not trigger when the user specifically requests only one dimension — use the corresponding focused skill instead (brooks-review / brooks-audit / brooks-debt / brooks-test).
    0 installs
  21. Brooks Review · aaryan1524 bundle
    PR code review that surfaces decay risks, design smells, and maintainability issues with concrete Symptom → Source → Consequence → Remedy findings, drawing on twelve classic engineering books. Triggers when: user asks to review code, check a PR, shares a diff or pastes code asking "does this look right?" / "any issues here?" / "ready to merge?", or asks for feedback on a function, class, or file. Also triggers when user mentions: code smells / refactoring / clean architecture / DDD / SOLID principles / Hyrum's Law / deep modules / tactical programming / conceptual integrity / Brooks's Law / Mythical Man-Month / second system effect. Do NOT trigger for: questions about how to write code from scratch, language syntax questions, or framework/tool questions where no existing code is shared.
    0 installs
  22. Design Tokens · aaryan1524 bundle
    Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
    0 installs
  23. Release Notes · aaryan1524
    Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
    0 installs
  24. Skill Sharing · aaryan1524
    Create, validate, package, and optionally share Codex-compatible skills with a team. Use when the user wants to distribute a reusable skill; require explicit approval before any Slack post.
    0 installs
  25. Skill Starter · aaryan1524
    Starter template for authoring a focused Codex skill. Use when creating a new reusable skill and no specialized authoring workflow is needed.
    0 installs
  26. Support Triage · aaryan1524
    Triage customer support tickets/emails/chats into categories, priority, and next action; draft responses and create reproducible steps; use for Zendesk/Intercom/Help Scout exports or pasted threads.
    0 installs
  27. Market Ad Intel · aaryan1524
    Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad campaigns.
    0 installs
  28. MCP Development · aaryan1524 bundle
    Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
    0 installs
  29. Meeting Actions · aaryan1524
    Turn meeting transcripts or rough notes into crisp summaries with decisions, risks, and owner-tagged action items; use for Zoom/Meet/Teams transcripts, call notes, or long meeting chats to generate share-ready outputs.
    0 installs
  30. Pr Quality Loop · aaryan1524
    Automated PR review and CI auto-fix for GitHub and GitLab using the Composio CLI. Pulls diffs, fetches failing job logs, posts review comments, and loops fix commits until checks go green.
    0 installs
  31. Safe Migrations · aaryan1524
    Run large codebase migrations and multi-file refactors. Uses the Composio CLI to coordinate issue tracking, batched PRs, and CI verification while the agent executes the transforms locally across hundreds of files.
    0 installs
  32. App Integrations · aaryan1524
    Connect Codex to any app via the Composio CLI. Send emails, create issues, post messages, update databases - take real actions across Gmail, Slack, GitHub, Notion, and 1000+ services from the terminal.
    0 installs
  33. Developer Growth · aaryan1524
    Analyze user-authorized coding history or project material to identify development patterns and learning opportunities. Use when the user asks for a growth review; never assume access to history or automatically send reports.
    0 installs
  34. Meeting Insights · aaryan1524
    Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversations, or miss opportunities to listen. Perfect for professionals seeking to improve their communication and leadership skills.
    0 installs
  35. Release Pipeline · aaryan1524
    Run end-to-end deploy pipelines across Stripe, Supabase, and Vercel using the Composio CLI. Promote Stripe products, push Supabase migrations, ship Vercel deployments, and verify with post-deploy checks — all from one script.
    0 installs
  36. Research Writing · aaryan1524
    Assists in writing high-quality content by conducting research, adding citations, improving hooks, iterating on outlines, and providing real-time feedback on each section. Transforms your writing process from solo effort to collaborative partnership.
    0 installs
  37. Spreadsheet Help · aaryan1524
    Write and debug spreadsheet formulas (Excel/Google Sheets), pivot tables, and array formulas; translate between dialects; use when users need working formulas with examples and edge-case checks.
    0 installs