LLM Mart Basic

@llm-mart · Joined Jun 2026

0 Followers 0 Reputation 11189 Contributions
Claude Skill ai-assisted-testing

Use this skill when you need AI-assisted testing workflows such as test data generation, root-cause analysis, and prioritization; triggers include AI-assisted testing and AI for QA.

0
Claude Skill ai-feature-testing

Use this skill when you need to test an AI-enabled product feature for behavior, safety, and user-impact boundaries; triggers include AI feature testing.

0
Claude Skill ai-generated-test-review

Use this skill when reviewing AI-generated unit, functional, API, or end-to-end tests for false confidence, weak assertions, missing risks, or unsafe test behavior; triggers include AI-generated test review and functional test review.

0
Claude Skill ai-safety-testing

Use this skill when you need evidence-bounded safety policy, abuse categories, refusal/redirect behavior, privacy, escalation, and Human risk decisions; triggers include AI 安全 and AI safety.

0
Claude Skill api-contract-testing

Use this skill when you need to verify API contract compatibility, consumer expectations, and schema change risk; triggers include API contract testing.

0
Claude Skill api-design-quality-review

Use this skill when an API, OpenAPI, or consumer contract needs a quality review before implementation or versioning; triggers include API design review, contract readiness review, and consumer compatibility audit.

0
Claude Skill api-error-contract-testing

Use this skill when you need to review API error shape, status, code, and disclosure behavior against sourced contracts; triggers include API 错误契约测试 and API error contract testing.

0
Claude Skill api-idempotency-testing

Use this skill when you need to assess API retry and duplicate-request behavior against sourced side-effect evidence; triggers include API 幂等性测试 and API idempotency testing.

0
Claude Skill api-negative-testing

Use this skill when you need to design evidence-bounded API failure and rejection scenarios; triggers include API 负向测试 and API negative testing.

0
Claude Skill api-pagination-testing

Use this skill when you need to design API pagination scenarios from ordered data and cursor or offset evidence; triggers include API 分页测试 and API pagination testing.

0
Claude Skill api-rate-limit-testing

Use this skill when you need to design evidence-bounded API quota, burst, and recovery scenarios; triggers include API 限流测试 and API rate limit testing.

0
Claude Skill api-schema-validation

Use this skill when you need to compare API schemas with sourced request and response evidence; triggers include API Schema 校验 and API schema validation.

0
Claude Skill api-security-testing

Use this skill when you need evidence-bounded api-security-testing analysis and validation preparation; triggers include API 安全测试 and api-security-testing.

0
Claude Skill api-test-bruno

Use this skill when you need to parse multi-format API definitions and generate Bruno collections for executable regression; triggers include Bruno collections and Bruno API testing.

0
Claude Skill api-test-postman

Use this skill when you need to design Postman collections, environments, scripts, and Newman-ready API regression plans; triggers include Postman API testing, API testing, and api-test-postman.

0
Claude Skill api-test-pytest

Use this skill when you need to parse multi-format API definitions and generate Pytest API automation; triggers include Pytest API tests and API automation with Pytest.

0
Claude Skill api-test-restassure

Use this skill when you need to parse multi-format API definitions and generate Rest Assured Java test classes; triggers include Rest Assured, RestAssured, and Java API automation.

0
Claude Skill api-test-supertest

Use this skill when you need to parse multi-format API definitions and generate executable Supertest scripts; triggers include Supertest, Node.js API testing, and Supertest automation.

0
Claude Skill api-version-compatibility-testing

Use this skill when you need to assess API version compatibility from old-client, new-server, and deprecation evidence; triggers include API 版本兼容性测试 and API version compatibility testing.

0
Claude Skill authentication-testing

Use this skill when you need evidence-bounded authentication-testing analysis and validation preparation; triggers include 身份认证测试 and authentication-testing.

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
/attach Attach

`crabbox attach` follows the recorded events of an active coordinator run and

0
/azure Azure

`crabbox azure` groups Azure provider setup commands. It currently has a single

0
/bench Bench

`crabbox bench` records and reports local benchmark timing observations. It is a

0
/cache Cache

`crabbox cache` inspects, purges, or warms package and build caches on a

0
/capsule Capsule

`crabbox capsule` captures, replays, and tracks lightweight failure capsules.

0
/checkpoint Checkpoint

Save the state of a lease, then restore it onto another box or fork it into a

0
/claims Claims

`crabbox claims list` prints the lease claims stored on the current machine. It

0
/cleanup Cleanup

`crabbox cleanup` sweeps direct-provider machines and local provider state that

0
/code Code

`crabbox code` bridges a Linux lease's `code-server` workspace into the

0
/config Config

`crabbox config` inspects and updates user configuration. It has three

0
/connect Connect

`crabbox connect` resolves a lease and opens an interactive SSH session to it.

0
/cp Cp

`crabbox cp` copies files or directories between the host and a Crabbox-owned

0
/desktop Desktop

`crabbox desktop` drives a visible desktop session on a lease that was warmed

0
/doctor Doctor

`crabbox doctor` runs a preflight before you commit to a long workflow. It is

0
/egress Egress

`crabbox egress` gives a lease mediated outbound network: a lease-local browser

0
/events Events

`crabbox events` prints the broker's event log for a recorded run.

0
/heartbeat Heartbeat

`crabbox heartbeat` refreshes the idle deadline for one owned lease and prints

0
/history History

`crabbox history` lists recorded remote command runs from the broker. Each run is

0
/image Image

`crabbox image` holds the trusted-operator controls for provider base images:

0
/init Init

`crabbox init` onboards the current repository: it writes the minimal config

0
Kmsg

Unofficial KakaoTalk CLI and native MCP server for macOS — read, watch, and send messages via Accessibility automation.

1 views 0 likes
Bestie

Local-first AI action assistant for operators: memory, skills, tools, and permission gates to turn work into controlled action.

2 views 0 likes
Mediary Scout

Agent-driven media library for your cloud drives (Quark 夸克 / 115 / 光鸭 GuangYa / 123网盘 / 天翼 Tianyi)

2 views 0 likes
Cyrene Agent

An open-source desktop AI agent built around Cyrene’s persona and powered by the self-developed Cyrene_Harness framework. It combines immersive character chat w…

2 views 0 likes
AiCode

在 Android 上运行的 AI 编程 Agent,内置 Linux 终端与代码编辑器,支持 MCP 协议扩展。

2 views 0 likes
TencentDB Agent Memory

TencentDB Agent Memory is a team-level memory hub for AI Agents — turning conversations, docs, and code into four reusable memory assets (Chat Memory, Skill, LL…

3 views 0 likes
Floe Agent

Floe — a native iOS/iPadOS AI agent workspace for iPhone and iPad, built for private bring-your-own-key workflows.

2 views 0 likes
Spring Ai Loom Agent

Spring Boot AI Agent — an out-of-the-box solution that makes your app converse, remember, think, and act.

2 views 0 likes
Citra

Give your AI agent eyes for PDFs — structured text, tables, OCR, visual evidence, and page-level citations via MCP. Native Rust, local-first.

3 views 0 likes
Cachebeat

A tiny Claude Code skill that keeps your prompt cache warm during idle sessions, so your next message reads from cache instead of paying full price.

2 views 0 likes
Monet

Monet — Multi-engine mission control for coding agents (Claude Code and Codex today). Browse, search, and drive your agent sessions from a native desktop app.

0 views 0 likes
Dottedsign Mcp

A DottedSign MCP server that enables AI assistants (Claude, ChatGPT) to manage signing tasks, templates, and document status via natural language.

0 views 0 likes
Claude Code Handbook Ru

Курируемый handbook по Claude Code на русском: hooks, skills, CLAUDE.md шаблоны, MCP-серверы, кейсы.

0 views 0 likes
Open Codex Computer Use

👾 Open Computer Use – Open-Source Alternative to Codex Computer Use

0 views 0 likes
Miru

An open-source AI companion that actually remembers you — runs entirely on your own Mac or server. Desktop pet · long-term memory · proactive companionship · mu…

2 views 0 likes
Kubeterm

Graphical management tool for Kubernetes on desktop and mobile.

2 views 0 likes
Ralphy

Open-source desktop app for content creation, with an agent runtime and standalone CLI.

2 views 0 likes
KDAN PDF MCP

Connect Claude and ChatGPT to KDAN PDF — upload, edit, compress, protect, redact, and compare PDFs in chat.

2 views 0 likes
Ekko Studio

Ekko Studio is a local-first AI workspace for multi-agent chat, coding, and visual workflows, available on desktop and the web.

2 views 0 likes
Mimi Remote

Open-source native iPhone/iPad client for OpenAI Codex CLI and Claude Code — review diffs, approve actions, steer sessions, and manage Git remotely.

1 views 0 likes