Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

mirrordmirrord 搜索

Agent Skill

mirrord 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

399

周安装

16

GitHub Stars

公开资料未说明

下载量

129
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mirrord(mirrord 搜索)
来源仓库:https://github.com/metalbear-co/skills
仓库路径:skills/mirrord
安装命令:
npx skills add metalbear-co/skills --skill "mirrord"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add metalbear-co/skills --skill "mirrord"

简介

mirrord 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它支持按任务场景或来源线索筛选信息,适用于 mirrord 工具相关的技术资料查询。
  • 通过 npx skills add metalbear-co/skills --skill "mirrord" 安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • mirrord 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mirrord Configuration Skill

Purpose

Generate and validate mirrord.json configuration files:

  • Generate valid configs from natural language descriptions
  • Validate user-provided configs against schema
  • Fix invalid configurations with explanations
  • Explain configuration options and patterns

Critical First Steps

Step 1: Load references Use the view tool to read BOTH reference files:

  1. /mnt/skills/user/mirrord/references/schema.json - Authoritative JSON Schema
  2. /mnt/skills/user/mirrord/references/configuration.md - Configuration reference

Step 2: Install mirrord CLI (if not present)

# Check if installed
which mirrord || brew install metalbear-co/mirrord/mirrord || curl -fsSL https://raw.githubusercontent.com/metalbear-co/mirrord/main/scripts/install.sh | bash

Step 3: Validate before presenting After generating any config, ALWAYS run:

mirrord verify-config /path/to/config.json
  • If validation fails, fix the config and re-validate
  • Only present configs that pass validation
  • Include validation output in your response

Request Types

Generate new config

User describes what they want without providing JSON.

  • Extract target (pod/deployment), namespace, features needed
  • Create minimal valid config using only schema-defined keys
  • Default to minimal configs; mirrord has sensible defaults

Validate existing config

User provides JSON to check.

  • Parse strictly (catch trailing commas, comments, invalid syntax)
  • Validate against schema
  • List issues by severity: Errors → Warnings → Suggestions
  • Provide corrected version

Modify existing config

User wants changes to their config.

  • Validate first, then apply requested changes
  • Ensure modifications maintain schema conformance

Response Format

For generation or fixes:

  1. Brief summary (1-2 sentences)
  2. Valid JSON config in code block
  3. Validation output from mirrord verify-config:
{
  "type": "Success",
  "warnings": [],
  "compatible_target_types": [...]
}
  1. Short explanation of key sections (if validation passed)

For validation:

  1. Errors (schema violations - will cause failures)
  2. Warnings (valid but potentially wrong behavior)
  3. Suggestions (optional improvements)
  4. Corrected JSON config

Configuration Guidelines

Common patterns (verify exact keys in schema):

Target selection:

  • "target": "pod/name" or {"path": "pod/name", "namespace": "staging"}
  • Set operator if using operator mode
  • Specify kube_context if needed

Features:

  • "env": true - Mirror environment variables
  • "env": {"include": "VAR1;VAR2"} - Selective inclusion
  • "fs": "read" - Read-only filesystem access
  • "network": true - Enable network mirroring
  • "network": {"incoming": {"mode": "steal"}} - Steal incoming traffic

Network modes:

  • Check schema for valid incoming.mode values (e.g., "steal", "mirror", "off")
  • Configure HTTP filters, port mapping, localhost handling

Templating:

  • mirrord uses Tera templates
  • Example: "target": "{{get_env(name=\"TARGET\", default=\"pod/fallback\")}}"
  • Templates must remain valid JSON

Validation Rules

Must enforce:

  • Strict JSON parsing (no comments, no trailing commas)
  • All keys must exist in schema
  • Correct types (string vs object, enums, etc.)
  • Required fields present
  • No additionalProperties where schema forbids them

Path notation for errors: Use JSON Pointer style: /feature/network/incoming/mode

Common Pitfalls

  • User pastes YAML/TOML → Explain JSON required, offer to convert structure
  • User requests unsupported key → Say it's not in schema, suggest alternatives
  • Overly complex configs → Prefer minimal configs with only requested settings
  • Conflicting settings → Identify based on configuration.md semantics

What to Ask (only if critical)

If request is under-specified, ask for ONE detail:

  • Target identity (pod name, namespace)
  • Incoming network behavior (steal vs mirror)
  • Operator usage (yes/no)
  • Specific ports to map/ignore

Otherwise provide safe defaults and note assumptions.

Automatic Validation Workflow

Every generated or modified config MUST be validated before presentation:

  1. Save config to temporary file
  2. Run mirrord verify-config <file>
  3. If validation fails:

- Parse error messages - Fix the config - Re-validate until success

  1. Present config with validation output

Never skip validation - it catches schema errors we might miss manually.

Quality Requirements

Schema-first: Output must conform to schema.jsonNo hallucination: Only use documented keys ✓ Valid JSON: Always parseable, no comments ✓ Actionable feedback: Clear explanations of what to fix and why ✓ Minimal configs: Don't set unnecessary options

Example Scenarios

"Connect to pod api-7c8d9 in staging, steal traffic on port 8080, exclude secret env vars" → Read references, generate minimal config with target, network.incoming, env.exclude

User provides invalid JSON with trailing comma → Parse error → Fix syntax → Validate against schema → Explain issues → Provide corrected config

"Is my config valid?" + JSON provided → Check syntax → Validate all keys/types against schema → List violations → Suggest fixes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

28.12%
按下载量换算36

Claude Code

22.38%
按下载量换算29

OpenCode

17.39%
按下载量换算22

Antigravity

13.01%
按下载量换算17

Gemini CLI

7.85%
按下载量换算10

Cursor

3.62%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills