LLM Mart Basic

@llm-mart · Joined Jun 2026

0 Followers 0 Reputation 11189 Contributions
Cursor Skill best-of-n-solving

Solve a hard problem by trying multiple approaches in parallel using isolated git worktrees. Each attempt runs in its own branch, and the best solution is selected. Use for complex refactors, tricky bugs, or architectural decisions where multiple strategies could work.

0
Cursor Skill building-skills-from-patterns

When the same multi-step workflow repeats in Cursor (user corrections or agent redos), capture it as a new SKILL.md under .cursor/skills/ so future sessions load it automatically.

0
Cursor Skill codebase-onboarding

Launch multiple explore subagents in parallel to investigate architecture, data models, auth, APIs, and deployment. Synthesize into an onboarding document.

0
Cursor Skill comparing-branches-visually

Check out two branches in separate worktrees, start both dev servers on different ports, screenshot the same pages, and produce a visual diff.

0
Cursor Skill converting-css-modules-to-tailwind

Migrate CSS Modules (.module.css/.module.scss) to Tailwind utility classes. Handles styles object removal, className interpolation, composition, and global overrides.

0
Cursor Skill converting-css-to-tailwind

Convert plain CSS stylesheets to Tailwind CSS utility classes. Handles selectors, media queries, pseudo-classes, custom properties, and animations.

0
Cursor Skill creating-pr

Create a clean, review-ready pull request with a good title, structured description, linked issues, and appropriate reviewers.

0
Cursor Skill dark-mode-testing

Toggle between light and dark mode in Cursor's browser, screenshot both states, and flag missing token mappings or contrast issues.

0
Cursor Skill database-design

Design database schemas — tables, relationships, indexes, constraints, and ORM setup. Covers relational design, normalization, and common patterns.

0
Cursor Skill detecting-port-conflicts

Detect EADDRINUSE and port conflicts, find what's using the port, and resolve it by killing the process or suggesting an alternative port.

0
Cursor Skill exporting-to-png

Export code, terminal output, diagrams, or UI components to PNG images using headless browser rendering or CLI tools.

0
Cursor Skill finding-dev-server-url

Scan running terminals for dev server URLs (localhost ports), report them, and optionally open the app in Cursor's built-in browser.

0
Cursor Skill fixing-broken-links

Crawl all links in a file or project, test each for a valid HTTP response, report broken ones, and fix or remove them.

0
Cursor Skill form-testing

Use Cursor's browser to fill and submit every form in the app with valid and invalid data, verifying validation, error states, and success flows.

0
Cursor Skill generating-images

Generate or edit images using the OpenAI Image API (gpt-image-2). Use when the user asks to generate, create, draw, render, illustrate, mock up, or edit an image, icon, logo, mockup, illustration, OG image, blog hero, marketing asset, or similar visual. Also use when the user sup

0
Cursor Skill grinding-until-pass

Keep iterating on code changes until the tests pass, the build succeeds, or linting is clean. Runs in a tight loop of fix → run → check → repeat. Use when you want the agent to autonomously grind through test failures or build errors.

0
Cursor Skill incident-response

Handle production incidents — triage, mitigate, communicate, and write postmortems.

0
Cursor Skill kubernetes-deploying

Deploy applications to Kubernetes — Deployments, Services, Ingress, ConfigMaps, Secrets, health checks, and scaling.

0
Cursor Skill monitoring-terminal-errors

Watch running terminal processes for crashes and stack traces. When an error appears, navigate to the failing file and line, diagnose, and fix it automatically.

0
Cursor Skill network-request-auditing

After navigating and interacting in Cursor's built-in browser, use browser_network_requests to audit every fetch/XHR for failures, slowness, duplicate calls, and suspicious payloads. Use for API-heavy pages and after backend or client networking changes.

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
/adr Adr

Author a numbered, dated, user-attributed Architecture Decision Record under .codearbiter/decisions/.

0
/audit Audit

Assemble the governance record for a range — commits, overrides, ADRs, sprint auto-decisions, open questions, checkpoint findings — into one dated audit packet. Read-only.

0
/btw Btw

Lightweight Q&A about the project — answer from context and return, no routing, no state change.

0
/checkpoint Checkpoint

Periodic multi-reviewer sweep of the whole codebase — surfaces a triaged checkpoint report.

0
/chore Chore

Sanctioned lane for non-behavioral work — docs-only edits, dependency bumps, reverts. Type-scaled gates; no TDD demanded of prose.

0
/cleanup Cleanup

Finish an already-merged branch — classify the leftover artifacts, return to a fast-forwarded default checkout, and delete the merged local branch. Every discard confirmed per item; containment proven, never assumed.

0
/commands Commands

Show the codeArbiter command catalog — the public command list and what each routes to.

0
/commit Commit

Run the full commit gate — the only sanctioned path to a git commit.

0
/conflict Conflict

Stop everything and surface a rule conflict — persona vs. docs vs. code. Present both sides and the conflict-hierarchy level; the user resolves. No silent reconciliation.

0
/context-check Context check

Optional manual drift audit — report stale provenance-tracked docs, then per stale doc offer re-scout, re-baseline, or defer. Not the daily loop; commit-gate auto-heal owns routine maintenance.

0
/create-context Create context

Brownfield back-fill — scout an existing codebase and populate .codearbiter/, then lock it initialized.

0
/debug Debug

Investigate-then-decide root-cause analysis for a defect whose cause is unknown. No code changes — exits to /ca:fix, /ca:adr, or a no-action close.

0
/decompose Decompose

Greenfield decomposition interview — a layered interview that populates .codearbiter/ and locks it initialized.

0
/doctor Doctor

Verify the active host install, package, command ownership, enforcement, and harmless live-fire probe. Read-only.

0
/feature Feature

Start a feature: brainstorm a spec, get it approved, then drive it test-first through the pipeline. The one entry to implementation.

0
/fix Fix

Fix a confirmed bug: a failing regression test first, then a minimal fix, then the rest of the tdd gates.

0
/init Init

Opt this repo into codeArbiter — scaffold the root-level .codearbiter/ state store.

0
/metrics Metrics

Read-only 3-metric governance glance — override rate, small-lane rate, sprint low-confidence ratio — each with a trend arrow vs. the prior 20-commit window.

0
/new-skill New skill

Author a new codeArbiter skill: prove the gap is real, get the spec approved, then write it.

0
/override Override

Sanctioned, logged bypass of a gate or hard rule — one audit line, then proceed.

0
Polymarket Paper Trader

Paper trading simulator for Polymarket — built for AI agents. MCP server, live order books, strategy backtesting. Install: npx clawhub install polymarket-paper-…

1 views 0 likes
Rssh

An SSH tool dedicated to addressing all pain points · (macOS/Windows/Linux/Android/iOS)

2 views 0 likes
Peerd

The first AI agent harness native to the browser. A browser extension that runs a full agent loop where you already work: it drives your tabs, spins up sandboxe…

2 views 0 likes
AutoLabel Forge

SmartLabel AI 2026: Auto-Annotate Any Object via LLM-Powered Prompt Parsing

2 views 0 likes
Ima2 Gen

Local-first visual generation runtime and studio for people and coding agents, with reproducible image and video workflows across multiple providers.

0 views 0 likes
Scholaraio

Scholar All-In-One: A research infrastructure for AI agents

0 views 0 likes
Auto Browser

Give your AI agent a real browser — with a human in the loop. Open-source MCP-native browser agent.

0 views 0 likes
FQGate Agent

同花顺免费开源AI插件FQGate-agent(原插件名 tonghuasun-agent):为 Codex、Claude Code、DeepSeek 等 AI 工具提供本机 A 股实时行情、K 线、Level-2、资讯、账户查询与可选交易能力。

1 views 0 likes
PiX

A non-linear AI agent workbench — session is a tree: branch anytime, and context follows the branch

1 views 0 likes
Autocad MCP

Production-grade AutoCAD MCP server for AI agents — 122 tools, dual COM (live AutoCAD) + headless ezdxf engines, ISO GD&T and dimension-tolerance validation for…

2 views 0 likes
Dscode

A DeepSeek coding agent harness: persistent shell, Ultra subagents, auto approval, Chrome MCP and session telemetry

2 views 0 likes
Waku Agent

Waku Waku! Waku Agent is a local-first AI agent harness you actually own, including loop, memory, eval, all in code built to stay legible as it grows.

2 views 0 likes
Nexting

Remote control for Claude Code, Codex, Grok, and Cursor on Mac or PC. View sessions, send tasks, and drive them remotely from your phone, PIN, or Ring. OpenClaw…

2 views 0 likes