承接 netresearch/agent-skill-repo 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

netresearch/agent-skill-repo

Composer 安装命令:

composer require netresearch/agent-skill-repo

包简介

Guide for structuring Netresearch skill repositories with multi-channel distribution

README 文档

README

A Claude Code skill for standardizing Netresearch skill repository layout, distribution channels, packaging, and validation.

What this skill solves

Netresearch maintains many agent skills; without a shared layout, packaging and CI drift across repositories. This skill defines one standard repo shape, reusable workflows, split licensing, and validation scripts so new and existing skills stay consistent and shippable via marketplace, Composer, npm, and releases.

It extends Anthropic-style single-file skills with repository-level conventions (not a replacement for Anthropic’s skill-creator — see comparison below).

Why this is a skill (model delta)

  • Value categories: org/project-specific knowledge (Netresearch repo shape, split licensing, composer type ai-agent-skill) and executable scripts/validators (validate-skill.sh, checkpoints.yaml).
  • Without the skill: the model invents a plausible generic repo layout — single LICENSE, no plugin.json, composer.json without the ai-agent-skill type — that fails validate-skill.sh and org CI.
  • Eval evidence: validate_skill_repo_structure and readme_requirements in skills/skill-repo/evals/evals.json.

Compatibility

This is an Agent Skill following the open standard originally developed by Anthropic and released for cross-platform use.

Supported platforms:

  • Claude Code (Anthropic)
  • Cursor
  • GitHub Copilot
  • Other skills-compatible AI agents

Skills are portable packages of procedural knowledge that work across any AI agent supporting the Agent Skills specification.

Use when

  • Creating or bootstrapping a Netresearch-style skill repository
  • Standardizing layout, composer.json, .claude-plugin/plugin.json, or release workflows
  • Wiring reusable CI from netresearch/skill-repo-skill
  • Fixing validation errors from validate-skill.sh or marketplace packaging
  • Migrating to split licensing (LICENSE-MIT + LICENSE-CC-BY-SA-4.0)

Expected outputs

  • A documented directory layout and templates for new repos
  • Validation: structural checks for SKILL.md, licenses, composer.json, plugin.json
  • Release discipline: tag-driven packaging aligned with plugin version
  • References for installation paths, marketplace sync, and release safety

Context requirements

  • Validation script: bash 4.3+ and python3 on PATH when running validate-skill.sh (JSON checks use Python, not jq)
  • Target repos: GitHub-hosted Netresearch skill repos using split licensing and Composer type ai-agent-skill
  • CI: consuming repos call reusable workflows from this repository (validate.yml, release.yml, …)

Example prompts

"Scaffold a new Netresearch skill repository from the templates in skill-repo-skill."
"Why does validate-skill.sh fail on my SKILL.md frontmatter?"
"Add composer.json and plugin.json for our new skill repo matching netresearch conventions."
"Wire our repo to use netresearch/skill-repo-skill validate.yml on every PR."
"Migrate this repo from a single LICENSE file to LICENSE-MIT and LICENSE-CC-BY-SA-4.0."

Related skills

Installation

Marketplace (recommended)

Add the Netresearch marketplace once, then browse and install skills:

/plugin marketplace add netresearch/claude-code-marketplace

npx (skills.sh)

Install with any Agent Skills-compatible agent:

npx skills add https://github.com/netresearch/skill-repo-skill --skill skill-repo

Download release

Download the latest release and extract to your agent’s skills directory.

Git clone

git clone https://github.com/netresearch/skill-repo-skill.git

Composer (PHP projects)

composer require netresearch/skill-repo-skill

Requires netresearch/composer-agent-skill-plugin.

npm (Node projects)

npm install --save-dev \
  @netresearch/agent-skill-coordinator \
  github:netresearch/skill-repo-skill

Requires @netresearch/agent-skill-coordinator, which discovers the skill in node_modules and registers it in AGENTS.md via a postinstall hook. For pnpm, allowlist the coordinator’s postinstall:

{
  "pnpm": {
    "onlyBuiltDependencies": ["@netresearch/agent-skill-coordinator"]
  }
}

Repository layout

Standard skill repository (concept)

The layout for a Netresearch skill repository (one or more skills per repo):

{name}-skill/
├── AGENTS.md                        # Agent rules / harness index
├── README.md                        # Human documentation
├── LICENSE-MIT                      # Code license (MIT)
├── LICENSE-CC-BY-SA-4.0             # Content license (CC-BY-SA-4.0)
├── composer.json                    # PHP distribution
├── package.json                     # Node distribution (optional)
├── renovate.json                    # Dependency automation
├── .claude-plugin/
│   └── plugin.json                  # Marketplace metadata
├── .github/workflows/               # CI (typically calls reusable workflows)
├── Build/                           # Build scripts and git hooks
├── docs/                            # Architecture, ADRs, dashboards
├── scripts/                         # Repo-level automation
└── skills/
    └── {skill-name}/
        ├── SKILL.md                 # AI instructions
        ├── checkpoints.yaml         # Assessment checkpoints (optional)
        ├── evals/                   # Skill evaluations
        ├── references/              # Extended docs
        ├── scripts/                 # Skill automation
        └── templates/               # Bootstrap templates

Installation methods (summary)

  1. Marketplace/plugin marketplace add netresearch/claude-code-marketplace
  2. npx (skills.sh)npx skills add <repo-url> --skill <name>
  3. Release download — GitHub Releases (skill files only)
  4. Git clone — direct clone
  5. Composercomposer require netresearch/<repo-name> (PHP projects)
  6. npm — coordinator + github:<org>/<repo> (Node projects)

Composer package requirements

  • "type": "ai-agent-skill"
  • "require": {"netresearch/composer-agent-skill-plugin": "*"}
  • "extra": {"ai-agent-skill": "skills/{skill-name}/SKILL.md"}

This repository (skill-repo-skill)

This repo dogfoods the layout and hosts reusable CI workflows for other Netresearch skill repos:

skill-repo-skill/
├── AGENTS.md
├── README.md
├── LICENSE-MIT
├── LICENSE-CC-BY-SA-4.0
├── SECURITY-AUDIT.md
├── composer.json
├── package.json
├── renovate.json
├── .claude-plugin/plugin.json
├── .github/workflows/             # validate, release, pr-quality,
│                                  # harness-verify, eval-validate,
│                                  # validate-agents, dependency-audit,
│                                  # npm-pack-smoke, ci-python
│                                  # (auto-merge delegates to netresearch/.github)
├── Build/
│   ├── Scripts/check-plugin-version.sh
│   └── hooks/
├── docs/
│   ├── ARCHITECTURE.md
│   └── dashboard/
├── scripts/
├── tests/
└── skills/skill-repo/
    ├── SKILL.md
    ├── checkpoints.yaml
    ├── evals/evals.json
    ├── references/
    ├── scripts/
    └── templates/

See docs/ARCHITECTURE.md for component responsibilities.

Extends Anthropic's Skill Creator

This skill extends (not replaces) Anthropic’s skill-creator:

Aspect Anthropic's skill-creator This skill adds
Focus SKILL.md content Repository structure
Scope Single file Full repo layout
Distribution Claude Code native + Marketplace, Composer
Audience AI instructions + Human README

Contributing

Contributions welcome. Please open PRs for:

  • Template improvements
  • Additional validation checks
  • Documentation updates

License

This project uses split licensing:

  • Code (scripts, workflows, configs): MIT
  • Content (skill definitions, documentation, references): CC-BY-SA-4.0

See the individual license files for full terms.

Credits

Developed and maintained by Netresearch DTT GmbH.

Made with ❤️ for Open Source by Netresearch

netresearch/agent-skill-repo 适用场景与选型建议

netresearch/agent-skill-repo 是一款 基于 Shell 开发的 Composer 扩展包,目前已累计 24 次下载、GitHub Stars 达 14, 最近一次更新时间为 2025 年 12 月 16 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 netresearch/agent-skill-repo 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 netresearch/agent-skill-repo 我们能提供哪些服务?
定制开发 / 二次开发

基于 netresearch/agent-skill-repo 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 24
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 14
  • 点击次数: 15
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 14
  • Watchers: 1
  • Forks: 3
  • 开发语言: Shell

其他信息

  • 授权协议: (MIT AND CC-BY-SA-4.0) 59e60083ef2a72ba89efab93aa14f222de888c82
  • 更新时间: 2025-12-16