openai-search-mcp: Command for Claude Code

.cursor/commands/trellis-integrate-skill.md

trellis-integrate-skill is a command for Claude Code, Cursor from lie5860/openai-search-mcp. It costs 0 tokens per session (1,429 once invoked), scanned A, a copy of integrate-skill, MIT.

A command for adapting a Claude global skill into a project's development guidelines. It updates guideline and example files rather than adding the skill's behavior directly to application code.

In plain words
What is it for?
Use it to read a named Claude skill and add its guidance and code examples under the project's .trellis/spec directory.
Why use it?
It gives a project a local version of the skill's relevant practices without mixing those instructions into the product implementation. It also places the material according to whether it applies to frontend or backend work.

Command for Claude CodeCursor

Written for Cursor and Claude Code: installed under .cursor/, but also a Claude Code command (commands/*.md). Also seen: mentions AGENTS.md.

This is lie5860/openai-search-mcp's own configuration. It tells Claude Code and Cursor how to work on openai-search-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything openai-search-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to lie5860/openai-search-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/lie5860/openai-search-mcp/main/.cursor/commands/trellis-integrate-skill.md
Clone the repo
git clone --depth 1 https://github.com/lie5860/openai-search-mcp

Made for: Claude Code, Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for trellis-integrate-skill

README.md
[![agentmods](https://agentmods.dev/badge/commands/lie5860/openai-search-mcp/trellis-integrate-skill/github.svg)](https://agentmods.dev/commands/lie5860/openai-search-mcp/trellis-integrate-skill)
Your own site
<a href="https://agentmods.dev/commands/lie5860/openai-search-mcp/trellis-integrate-skill"><img src="https://agentmods.dev/badge/commands/lie5860/openai-search-mcp/trellis-integrate-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for trellis-integrate-skill

Your own site · 80×15
<a href="https://agentmods.dev/commands/lie5860/openai-search-mcp/trellis-integrate-skill"><img src="https://agentmods.dev/badge/commands/lie5860/openai-search-mcp/trellis-integrate-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,429 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01429
Opus 5 $0.00000 $0.00714
Sonnet 5 $0.00000 $0.00286
Haiku 4.5 $0.00000 $0.00143

Measured 11d ago against content hash bb15144c3089, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

trellis-integrate-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to integrate-skill — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.cursor/commands/trellis-integrate-skill.md · 220 lines

How it starts

The opening of the file, as written. The whole thing — 220 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Integrate Claude Skill into Project Guidelines

Adapt and integrate a Claude global skill into your project's development guidelines (not directly into project code).

Usage

/trellis-integrate-skill <skill-name>

Examples:

/trellis-integrate-skill frontend-design
/trellis-integrate-skill mcp-builder

Core Principle

[!] Important: The goal of skill integration is to update development guidelines, not to generate project code directly.

  • Guidelines content -> Write to .trellis/spec/{target}/doc.md
  • Code examples -> Place in .trellis/spec/{target}/examples/skills/<skill-name>/
  • Example files -> Use .template suffix (e.g., component.tsx.template) to avoid IDE errors

Where {target} is frontend or backend, determined by skill type.

Execution Steps

1. Read Skill Content

openskills read <skill-name>

If the skill doesn't exist, prompt user to check available skills:

# Available skills are listed in AGENTS.md under <available_skills>

2. Determine Integration Target

Based on skill type, determine which guidelines to update:

Skill Category Integration Target
UI/Frontend (frontend-design, web-artifacts-builder) .trellis/spec/frontend/
Backend/API (mcp-builder) .trellis/spec/backend/
Documentation (doc-coauthoring, docx, pdf) .trellis/ or create dedicated guidelines
Testing (webapp-testing) .trellis/spec/frontend/ (E2E)

3. Analyze Skill Content

Extract from the skill:

  • Core concepts: How the skill works and key concepts
  • Best practices: Recommended approaches
  • Code patterns: Reusable code templates
  • Caveats: Common issues and solutions

4. Execute Integration

4.1 Update Guidelines Document

Add a new section to the corresponding doc.md:

@@@section:skill-<skill-name>
## # <Skill Name> Integration Guide

### Overview
[Core functionality and use cases of the skill]

### Project Adaptation
[How to use this skill in the current project]

### Usage Steps
1. [Step 1]
2. [Step 2]

### Caveats
- [Project-specific constraints]
- [Differences from default behavior]

### Reference Examples
See `examples/skills/<skill-name>/`

@@@/section:skill-<skill-name>

Read the full file on GitHub · 220 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 220 lines · 0 tokens per session scan A bb15144c3089

Subscribe to this mod's changes

trellis-integrate-skill is a command published in the GitHub repository lie5860/openai-search-mcp (13 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,429 tokens. A static security scan graded it A with 0 findings. It is 100% identical to integrate-skill, differing in 8 lines, and is treated as a copy.