LLM Mart Basic

@llm-mart · Joined Jun 2026

0 Followers 0 Reputation 11196 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
/decode-url Decode url

Decode a Proofpoint URL Defense rewritten URL back to the original URL

0
/investigate-threat Investigate threat

Deep-dive threat investigation with forensics, campaign context, and remediation options

0
/release-quarantine Release quarantine

Release one or more quarantined messages to their intended recipients

0
/search-quarantine Search quarantine

Search quarantined messages in Proofpoint by sender, recipient, subject, or reason

0
/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
Claude Prompts Mcp

MCP server for reusable prompt templates, multi-step workflow chains, and quality gates. Compose agentic workflows with an operator syntax; export as native ski…

16 views 0 likes
CNEquity

中国股票数据基础设施,覆盖行情、研报、资金面、筹码、公告、龙虎榜、ETF/期权、舆情互动、基本面、行业板块、宏观与风险事件等核心数据。42+A股数据集,日更、自托管、MCP 原生,零注册、零 API Token

14 views 0 likes
Okf

OKF (Open Knowledge Format): Durable, structured memory for AI agents. Author, validate, consume, and maintain portable knowledge bundles through an ecosystem o…

32 views 0 likes
Tossinvest Cli

토스증권을 AI 에이전트와 터미널에서 다루는 도구. CLI 와 MCP 서버로 계좌·시세·주문은 물론 웹앱 전용 기능(수급·AI 시그널·스크리너·배당)까지, JSON·CSV 구조화 출력으로 AI 도구·자동화에 바로 연동.

29 views 0 likes
Linkedin Skills

Claude skills for LinkedIn. 11 Claude Code and Codex skills that write human-sounding LinkedIn posts, craft comments that get noticed, analyze your feed, and bu…

26 views 0 likes
Itasca Mcp

MCP server connecting AI agents to ITASCA engines (PFC, FLAC, 3DEC, MPoint, MassFlow) — run geotechnical & geomechanics simulations through natural conversation

17 views 0 likes
Awesome Knowledge Management

A curated list of amazingly awesome articles, people, applications, software libraries and projects related to the knowledge management space

15 views 0 likes
Claude Command Center

One local dashboard for every Claude Code, Codex, Cursor, Antigravity, and Kilo Code session on your Mac. Spawn in parallel, ship in parallel. Open source, MIT.

29 views 0 likes
Nanocodex

Building blocks for frontier OpenAI agents in Rust. Nanocodex empowers you with Codex-level performance anywhere.

29 views 0 likes
Frontman

The AI agent that lives in your framework/browser

26 views 0 likes
OpenProgram

Self-Programming AI Assistant. Capture, automate, and refine all your workflows.

17 views 0 likes
Cindy

Consider it done. The open-source AI agent that works out of the box · 想到,就能做到。开源、开箱即用的 AI Agent。

14 views 0 likes
OpenCLI

Make Any Website into CLI & Use your logged-in browser by AI agent.

31 views 0 likes
Iso 24495

ISO 24495 Plain Language skills and Claude Code plugin

15 views 0 likes
Hermes Tool Router

Deterministic, fail-open tool routing for Hermes Agent with an optional local-model fallback.

14 views 0 likes
Solo Skills

1인 사업가 생산성 키트 — 직원 없이 49개를 자동화했고, 그중 바로 쓸 수 있는 AI 에이전트 스킬 26개(+실행 스크립트)를 공개합니다

11 views 0 likes
Activepieces

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agent…

28 views 0 likes
PlugNmeet Server

The open-source, self-hosted video conferencing software. Scalable, customizable, and with a powerful AI Meeting Agent.

26 views 0 likes
Claude Ops

Business operating system for Claude Code — 57 skills, 21 agents, smart daemon. Unified inbox (WhatsApp/Email/Slack/Telegram), autonomous PR merge, full-AWS mon…

17 views 0 likes
Pi Desktop

A local-first, cross-platform Electron desktop workspace for Pi Coding Agent, with sessions, project files, browser tools, skills, plugins, and messaging integr…

16 views 0 likes