LLM Mart Basic

@llm-mart · Joined Jun 2026

0 Followers 0 Reputation 11189 Contributions
Claude Skill mr

Create a merge request or pull request from the current branch: verify quality gates, enforce conventional commits, validate the title, and create it without a confirmation step. Use when the user says 'create MR', 'create PR', 'open a merge request', or 'raise a PR'.

0
Claude Skill prototype

Builds a throwaway prototype to answer a design question. Use when the user wants to sanity-check whether a state model or logic feels right, or explore what a UI should look like.

0
Claude Skill prune

Reviews code exclusively for over-engineering and lists what to delete: reinvented standard library, unneeded dependencies, speculative abstractions, dead flexibility. Use when the user says 'review for over-engineering', 'is this over-engineered', or invokes /prune. Complements

0
Claude Skill research

Starts Phase 1 (Research) for a topic: reads every relevant file, optionally runs a panel of Explore teammates, and saves a research artifact to .claude/state/research/. Use when the user says 'research <topic>' or '/research', or before planning work in unfamiliar code. Research

0
Claude Skill review-pr

Reviews a pull request with structured severity-based feedback. Use when asked to review a PR, asked for a code review, or given a PR number/URL.

0
Claude Skill sentry-issue

Fetches and digests Sentry issue data (summary, tags, stack trace, breadcrumbs, latest event) by short ID, numeric issue ID, or sentry.io URL, for any Sentry org the local token can access. Use when the user mentions a Sentry issue or short ID (e.g. MY-PROJECT-4X2), pastes a sent

0
Claude Skill ship

Runs pre-launch validation and the release workflow. Use when the user says 'ship', 'release', 'deploy', or 'ready to merge'.

0
Claude Skill summarize

Summarizes the current session's work into a diary entry at .claude/state/sessions/ and runs worktree auto-cleanup. Use when the user says 'summarize' or '/summarize', or when closing out a completed work session.

0
Claude Skill to-issues

Breaks a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when the user wants to convert a plan into issues, create implementation tickets, or break down work into issues.

0
Claude Skill verify-done

Runs the comprehensive quality gate before declaring work done: discovers the checks CI actually runs, executes them in order, then reviews git status and the session diff. Use when the user says 'verify done' or '/verify-done', or before pushing any branch.

0
Claude Skill wayfinder

Plans a huge chunk of work - more than one agent session can hold - as a shared map of decision tickets in a local file, and resolves them one at a time until the way to the destination is clear. Use when the user invokes /wayfinder on an effort too big for a single session.

0
Claude Skill worktree

Creates an isolated git worktree for the current task and switches into it, so the task never collides with the main checkout. Use when the user says '/worktree <slug>' or wants an isolated working copy for a new task.

0
Claude Skill worktree-merge

Cleans up a worktree after its branch has been merged: removes the worktree directory and deletes the local branch. Use when the user says '/worktree-merge' or asks to clean up a merged worktree.

0
Claude Skill worktrees

Audits and optionally prunes git worktrees: current repo by default, cross-repo scan under ~/dev/ with --all. Use when the user says '/worktrees', 'audit worktrees', or 'prune worktrees'.

0
Claude Skill write-a-skill

Provides the reference and principles for writing and editing skills well - the vocabulary that makes a skill predictable. Use when creating, writing, editing, reviewing, or refactoring an agent skill.

0
Claude Agent ArgoCD Expert

Designs and reviews ArgoCD Applications, ApplicationSets, AppProjects, sync policies, and Argo Rollouts progressive delivery. Use when the task involves ArgoCD manifests, sync behavior, GitOps repo layout, or canary/blue-green rollouts. General Kubernetes and CI pipeline work bel

0
Claude Agent AWS Expert

Designs and reviews AWS architecture, IAM, networking, and cloud cost. Use when the task involves AWS services, Terraform targeting AWS, a Well-Architected review, or AWS cost optimization. Not for GCP work (use GCP Expert); cross-provider IaC and pipeline concerns belong to DevO

0
Claude Agent Backend Staff Engineer

Designs and reviews Node.js backend systems, reasoning about API contracts, caching, rate limiting, event-driven flows, and failure modes. Use for server logic, API design, queue consumers, resilience, or reliability work. Pairs with PostgreSQL Expert, who owns database internals

0
Claude Agent Cybersecurity Expert

Threat-models code and architecture changes across trust boundaries, authn/authz flows, secrets handling, and injection surfaces, returning severity-ranked findings with concrete attack scenarios. Use when a change touches authentication, sessions, tokens, user-input processing,

0
Claude Agent DevOps Engineer

Builds and reviews infrastructure-as-code, CI/CD pipelines, containers, and Kubernetes deployments. Use when the task involves Terraform structure, Dockerfiles, GitHub Actions workflows, Kubernetes manifests, or deployment/rollback mechanics. Provider-specific IAM and cost questi

0
How to create and share a Claude Code plugin

A Claude Code plugin turns standalone project configuration into a namespaced, installable extension that teams and communities can update as one unit.

agents security skill-md claude-code
Sep 25
The scaffolding that made it safe

None of the safety came from the model. It came from six boring habits.

git devops ai-agents claude-code
Sep 25
Claude Code skills vs. subagents: when to use each

Skills package instructions and references. Subagents run work in a separate context and return results. They solve different problems and can be composed deliberately.

agent-skills claude-code context
Sep 24
Knowing when to stop

Six hours in, one step left, everything green, and the incident that didn't happen

prompt-engineering ai ai-agents sre
Sep 24
CLAUDE.md vs. skills: where should Claude Code instructions live?

CLAUDE.md carries persistent project context. Skills load reusable procedures when relevant. Separating stable facts from task-specific workflows keeps both easier to maintain.

agent-skills claude-skills configuration context
Sep 23
Those are the other app's keys

Twenty minutes recovering secrets that never existed, and the one sentence from a human that ended it

security devops ai ai-agents
Sep 23
How to use remote MCP servers with the OpenAI Responses API

An API request routing a model's tool call through an approval gate to a remote MCP server

security mcp integrations open-api
Sep 22
The coverage audit before you delete the safety net

31 config keys, two audits, and why the first one was wrong in both directions

security devops ai-agents secrets-management
Sep 22
How to publish an MCP server to the official MCP Registry

The official MCP Registry stores standardized server metadata rather than package code. Publishers verify a namespace, describe installation or remote access, and submit immutable versions.

security mcp
Sep 21
Rotating a leaked credential, in the right order

Everyone looks at the Dockerfile. The file that actually leaked the key was the project file.

security devops ai-agents containers
Sep 21
MCP authentication explained: OAuth, scopes, and safe token handling

Remote MCP authorization uses established OAuth standards, but secure integration still requires issuer validation, least-privilege scopes, protected token handling, and server-side enforcement.

security mcp
Sep 20
Byte-identical or bust

"Copy it over and switch the reference" is two steps, and the outage lives in the one nobody checks

security kubernetes verification
Sep 20
MCP stdio vs. Streamable HTTP: which transport should you use?

stdio fits local processes and prototypes. Streamable HTTP fits hosted services and shared integrations. The right choice follows where the capability runs and who must reach it.

security mcp
Sep 19
Never let the AI print a secret

The most important rule wasn't about what I could change. It was about what I was allowed to display.

security kubernetes devops ai-agents
Sep 19
MCP tools vs. resources vs. prompts: when to use each

Tools perform operations, resources expose readable context, and prompts provide reusable templates. Choosing the correct primitive makes an MCP server easier to understand and govern.

security mcp
Sep 18
How to test an MCP server with MCP Inspector

Use MCP Inspector to connect to local or remote servers, inspect capabilities, call tools, read resources, test prompts, and diagnose failures before release.

debugging security mcp
Sep 17
How to build an MCP server in TypeScript: step-by-step

Build an MCP server in TypeScript with focused tools, validated schemas, local and remote transports, Inspector tests, and production security controls.

security ai mcp
Sep 15
What is an MCP server? A practical guide

An MCP server exposes tools, resources, or prompts through a standard protocol so an AI application can discover and use external capabilities.

agents ai agent-skills claude-skills
Sep 11
How to vet AI agent skills before installing them

Treat an AI agent skill as both an instruction package and a software dependency: inspect what it says, what it runs, what it can access, and how it updates.

agents security ai-agents ai-agent-skills
Sep 10
How to add an MCP server to Claude Code safely

Add remote HTTP or local stdio MCP servers to Claude Code, choose the right scope, protect credentials, verify the connection, and test with least privilege.

agents agent-skills claude-skills claude-code
Sep 9
/vap-report Vap report

Get the Very Attacked People (VAP) report showing the most targeted users

0
/month-end-recon Month end recon

Run the full billing-drift sweep for a billing period, formatted as a month-end reconciliation report

0
/renewals Renewals

List upcoming contract and subscription renewals within a window, sorted by date

0
/true-up True up

Run the license true-up reconciliation for one client or the whole portfolio

0
/search-tickets Search tickets

Search Freshdesk tickets with the Freshdesk query language — filter by status, priority, agent, group, type, tag, and date — and return a ranked, readable result list

0
/ticket-summary Ticket summary

Summarize a single Freshdesk ticket and its full conversation thread — the request, what has happened, current SLA state, and the recommended next action

0
/add-action Add action

Add an action (note, update, or response) to an existing HaloPSA ticket

0
/contract-status Contract status

Check contract status, service entitlements, and billing information for a client

0
/create-ticket Create ticket

Create a new service ticket in HaloPSA

0
/kb-search Kb search

Search the HaloPSA knowledge base for articles and solutions

0
/search-assets Search assets

Search for configuration items/assets by name, serial number, type, or client

0
/search-clients Search clients

Search for HaloPSA clients by name, domain, or other attributes

0
/search-tickets Search tickets

Search for tickets in HaloPSA by various criteria

0
/show-ticket Show ticket

Display comprehensive ticket information including history, actions, and related entities

0
/sla-dashboard Sla dashboard

View SLA status across tickets, including approaching breaches and at-risk tickets

0
/update-ticket Update ticket

Update fields on an existing HaloPSA ticket including status, priority, and assignment

0
/create-deal Create deal

Create a new deal in HubSpot with company association

0
/log-activity Log activity

Log a note or create a task on a HubSpot contact, company, or deal

0
/lookup-company Lookup company

Find a HubSpot company by name or domain and show associated contacts and deals

0
/pipeline-summary Pipeline summary

Summarize the HubSpot deal pipeline - deals per stage, total value, and expected close dates

0
Atom

Atom Agent, Open-Source Governed AI Agent Platform for Self-Hosted Automation

11 views 0 likes
Oh My Hermes

The agent engineering intelligence harness, optimized tools, memory system, subagents and mixture of models packages ⚚

15 views 0 likes
Sesori Apps Monorepo

Sesori iOS/Android app and the Sesori Bridge CLI — drive Claude, Codex, OpenCode, Cursor, Pi, OMP, Hermes coding sessions from your phone

13 views 0 likes
Repobrain

🧠 RepoBrain (formerly Antigravity) — Give your repo a brain. ChatGPT for your codebase: works in Claude Code, Cursor, Codex, Windsurf & more.

13 views 0 likes
Dsh Plugin Subscriptions

Use ChatGPT (Codex), Claude, and Grok (X Premium) subscriptions as DeepSeek Harness LLM providers — OAuth login in the web UI, no API keys

14 views 0 likes
Latitude Llm

Latitude is the open-source AI monitoring platform.

15 views 0 likes
Webbrain

Open-source AI browser agent for Chrome and Firefox (monorepo) 🧠

15 views 0 likes
Cli

Official Model Studio CLI(阿里云百炼 CLI)built for AI Agent frameworks, exposing models, search, multimodal, and workflow capabilities as structured tool calls.

14 views 0 likes
Awesome DeepSeek Harness Plugins

Curated DeepSeek Harness (DSH) plugins, extensions, tools, skills, clients, runtimes, integrations, and verified references — English and Chinese.

15 views 0 likes
Slides Maker

Turn papers, code, and docs into presentation-ready, natively editable PPTX in Codex / Claude Code. Native charts and equations, speaker notes, click-build anim…

13 views 0 likes
Grix

Grix : Work with agents like talking to people.

24 views 0 likes
Atomic Agent

Local First Ai Agent. Optimized for Local Ai models. Long context window. Proper tools callings. Runs privately on your device.

25 views 0 likes
Agentql Mcp

Model Context Protocol server that integrates AgentQL's data extraction capabilities.

14 views 0 likes
Pilot

AI that ships your tickets.

13 views 0 likes
Octo Cli

Metadata-driven CLI for AI Agent Bots — 48 operations across 7 domains, structured JSON envelope I/O, zero interactive prompts.

12 views 0 likes
Nextclaw

An open-source, extensible, self-hosted agent workspace with multi-runtime support for Codex, Claude Code, and more, plus reusable local apps for custom interfa…

13 views 0 likes
Deepseek Harness Desktop

Open-source Windows desktop client and GUI for DeepSeek Harness — zero-setup installer with Codex, plugins, skills, SSH, mobile remote access, and 11 skins.

12 views 0 likes
Openscience

The open-source AI workbench for scientific research

14 views 0 likes
DeepSeek Reasonix

DeepSeek-native AI coding agent for your terminal. Engineered around prefix-cache stability — leave it running.

14 views 0 likes
Bladebro

A Fully free agentic browser driver for AI , few tools, full control, real stealth, top-tier token efficiency.

12 views 0 likes