add-agent-target
- Repo stars 15
- Author updated Live
- Author repo agentsmesh
- Domain
- Documentation
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @sampleXbro · no license declared
- Token usage
- Lean
- Setup complexity
- Guided setup
- External API key
- Not required
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Shell exec
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: add-agent-target
description: Use when adding support for a new AI agent target to agentsmesh. Covers official format research…
category: documentation
runtime: no special runtime
---
# add-agent-target output preview
## PART A: Task fit
- Use case: Use when adding support for a new AI agent target to agentsmesh. Covers official format research, canonical mapping, importer/generator/linter work, realistic fixtures, unit/integration/e2e coverage, matrix/docs updates, and final verification. Includes both project and global mode from day one..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Purpose / When To Use / Do Not Use This Skill For” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Use when adding support for a new AI agent target to agentsmesh. Covers official format research, canonical mapping, importer/generator/linter work, realistic fixtures, unit/integration/e2e coverage, matrix/docs updates, and final verification. Includes both project and global mode from day one.”.
- **02** When the source has headings, the agent prioritizes “Purpose / When To Use / Do Not Use This Skill For” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files, run shell commands.
Start with a small task and check whether the result follows “Purpose / When To Use / Do Not Use This Skill For”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: add-agent-target
description: Use when adding support for a new AI agent target to agentsmesh. Covers official format research…
category: documentation
source: sampleXbro/agentsmesh
---
# add-agent-target
## When to use
- Use when adding support for a new AI agent target to agentsmesh. Covers official format research, canonical mapping, i…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Purpose / When To Use / Do Not Use This Skill For” and keep inference separate from source facts.
- read files, write/modify files, run shell commands; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "add-agent-target" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Purpose / When To Use / Do Not Use This Skill For
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files, run shell commands | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Purpose
Add Agent Target
Use this skill when the task is to add a brand-new supported agent target to this repository (built-in) or as an external plugin package.
Primary reference: docs/add-new-target-playbook.md is the step-by-step workflow (phases 1–9, file templates, verification gates). Open it first and follow it. This skill file is the contract — the non-negotiable rules, touchpoints, and completion bar. The playbook is how; this file is what and why.
Companion skill: add-global-mode-target — use only when extending global-mode support into an existing target that was built before global was a first-class contract. For new targets, global mode is part of this skill (scaffold wires it automatically).
When To Use
- The task is to add a tool not currently in
src/targets/catalog/target-ids.ts - Scope covers both
projectandglobalmodes unless the target has no meaningful global surface - Delivery is either built-in (in this repo) or external plugin (standalone npm package)
Do Not Use This Skill For
- Extending global-mode coverage on an existing target — use
add-global-mode-target - Changing capability levels for an existing target — update the target's descriptor directly
- Plugin feature work that doesn't add a new target id
Non-Negotiable Rules
MUST
- Search the internet for the target's current official file structure, config files, and example content before changing code.
- Prefer official docs and other primary sources. Use vendor examples or source code only when official docs are incomplete, and call that out explicitly.
- Separate the target product from the current assistant runtime before making format decisions. Do not confuse a generated target like
codex-cliwith Codex desktop/chat, or local CLI MCP config with app-managed connectors. - Capture the target's real capability map for every canonical feature: rules, additionalRules, commands, agents, skills, mcp, hooks, ignore, permissions.
- Fill in the descriptor
metadatablock (displayName,category,officialUrl,shortDescription). This is required at compile time and drives every auto-generated tool list in README + website. The scaffold leavesTODO(agentsmesh-scaffold)markers — replace them with the values from your Phase 1 research before commit. - When a feature is
nonebutskillsisnativeorembedded, evaluate whethersupportsConversionshould project that feature as skills. If the target reads skill bundles, commands and agents with no native surface should be projected as skills viasupportsConversion: { commands: true, agents: true }and registered insrc/config/core/conversions.tswithDEFAULT_*_TO_SKILLS. Do not add lint warnings for features that are projected as skills — only warn for features that are truly dropped. - Start from
agentsmesh target scaffold <id>when building a built-in target. Do not hand-write the 10 skeleton files the scaffold produces. - Write failing tests first for every new behavior. Do not implement first and backfill later.
- Add unit, integration, and e2e coverage for the complete import and generate flow, including global scope when applicable.
- Add rich and realistic fixtures for the new target. Fixtures must resemble real projects, not toy placeholders.
- Cover all edge cases for the new target, including legacy paths, fallbacks, malformed files, partial support, and unsupported features.
- Wire descriptor capabilities for both project and global scope. New targets must include global mode unless the target has no global config surface at all, and that absence must be documented.
- Update every affected command surface and user-facing document so the new target is discoverable and accurately described.
- Update the compatibility matrix to reflect native, embedded, partial, or unsupported features. The matrix auto-builds from descriptor capabilities;
pnpm matrix:verifymust pass. The same script auto-generates the import-targets table, homepage tool list, and README tool list from descriptormetadata— no manual edits to those tables. - Update init detection and import empty-state messaging for the new target when native files exist.
- Reuse existing capability-focused tests where possible; extend them instead of duplicating assertions across multiple files.
- Preserve the canonical
.agentsmesh/contract. If the target cannot represent a feature natively, model that explicitly instead of inventing fake native output. - Ensure every internal file link or reference inside generated or imported Markdown artifacts is convertible through the shared reference-rewrite pipeline, just like the existing targets. Do not ship a new target unless canonical
.agentsmesh/references round-trip cleanly across that target's Markdown surfaces. - Run the full verification stack, including the packaging gates (
pnpm attw,pnpm publint,pnpm consumer-smoke), before claiming completion. - Run the
post-feature-qaskill before marking the task done.
MUST NOT
- Do not infer the target format from old fixtures, README text, or memory alone.
- Do not add placeholder fixtures with
SYNTHETICmarkers or obviously fake content. - Do not add shallow smoke tests as a substitute for feature coverage.
- Do not silently skip unsupported features; document and test the chosen behavior.
- Do not leave commands, schema enums, init detection, matrix output, or docs partially updated.
- Do not hardcode target-specific branches in shared code when a descriptor field can carry the behavior.
Workflow (detailed in docs/add-new-target-playbook.md)
- Research — §1 of the playbook. Answer every research-checklist item from primary sources before writing code.
- Scaffold — §2 of the playbook. Run
pnpm exec agentsmesh target scaffold <id>, then register the id in the three catalog files listed there. - Constants and capabilities — §3. Fill in paths and capability levels for both project and global scope.
- Conversion eligibility — For each feature marked
nonein capabilities, check if the target supports skills (nativeorembedded). If so, addsupportsConversionto the descriptor for those features, register defaults insrc/config/core/conversions.ts, and omit lint warnings for those features (they becomeembeddedvia skill projection). Only emit lint warnings for features that are truly dropped with no fallback. - Tests first — §4. Add realistic fixtures under
tests/e2e/fixtures/<id>-project/and write failing unit/integration/e2e tests. - Implement generators, importers, and reference maps — §5. Feature-by-feature, using existing targets as reference implementations.
- Global mode — §6. Fill in
descriptor.global,rewriteGeneratedPath, and anyskillMirrororsharedArtifactsneeds. - Plugin packaging — §7. Only if shipping as an external plugin rather than a built-in.
- Matrix and docs — §8. Run
pnpm schemas:generate && pnpm matrix:generateand updatewebsite/src/content/docs/reference/supported-tools.mdx. - Verification — §9. Run the full stack (see below). All must pass.
Refer to .agentsmesh/skills/add-agent-target/references/target-addition-checklist.md for the concrete audit list of touchpoints, tests, fixtures, and edge cases.
Required Verification
Before claiming completion, every command must pass:
pnpm typecheckpnpm lintpnpm testpnpm test:e2epnpm matrix:verifypnpm publintpnpm attwpnpm consumer-smoke
If a narrower command is useful during iteration, run it first, but do not skip the full stack at the end.
Completion Standard
The task is not done until all of the following are true:
- The target appears in
agentsmesh matrixCLI output and passespnpm matrix:verify. - Import and generate behavior are both covered for every supported feature, in both project and global scope where applicable.
- Unsupported or lossy features are documented in
website/src/content/docs/reference/supported-tools.mdxand tested. - Fixtures under
tests/e2e/fixtures/<id>-project/are rich enough to exercise real parsing branches (rules, skills, MCP, hooks, ignore as applicable). - Round-trip import → generate preserves content byte-for-byte where the format permits.
- README matrix and website supported-tools page are in sync.
- All verification commands listed above pass.
post-feature-qaskill has been applied and any gaps closed.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review