Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

smart-skill-maker智能技能制造者

Agent Skill

smart-skill-maker 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

524

周安装

21

GitHub Stars

公开资料未说明

下载量

170
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lingkaix/smartworkers --skill smart-skill-maker

简介

smart-skill-maker 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目变更进行整理。

  • 适用于技能创建和协作事项管理的开发场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能涉及文件读写操作。
  • 建议结合原始 README 了解具体支持的协作功能和操作边界。

SKILL.md

Smart Skill Maker

This is the single SmartWorkers skill-authoring entry point.

It uses $skill-creator as the core drafting and improvement engine, then applies the repo's shared conventions from:

  • skills/general/smart-skill-maker/assets/templates/SKILL.md
  • skills/general/smart-skill-maker/references/AUTHORING.md
  • skills/general/smart-skill-maker/scripts/new_skill.sh

Required inputs

  • Target role and skill name
  • Whether the task is creating a new skill or improving an existing one
  • The workspace root path
  • Whether the source copy already exists under skills/<role>/<skill-name>/
  • Whether the skill should also include agents/openai.yaml
  • The worker role the skill belongs to

Workflow

  1. Confirm the workspace authoring prerequisites.

- skill-creator should already be installed for Codex. - npx skills should already be available. - The workspace should have a local skills/ folder with skills/AGENTS.md.

  1. Load the canonical SmartWorkers authoring materials.

- Use skills/general/smart-skill-maker/assets/templates/SKILL.md as the default scaffold. - Use skills/general/smart-skill-maker/references/AUTHORING.md as the house-style reference. - Keep skills/AGENTS.md short and operational: it should define local apply behavior, not duplicate the full style guide.

  1. Make skills/ the source of truth.

- For a new skill, create skills/<role>/<skill-name>/. - Treat <role> as the worker identity and usage scope. A role is not just a tool category; it represents a real worker with related skills and one or more workflows. - Similar capabilities may appear in different roles when the real job, workflow, or acceptance criteria differ. For example, a copy writer and an ads designer may both have image-generation skills, but those skills should still stay role-specific if the worker expectations are different. - For an existing installed skill with no source copy yet, copy .agents/skills/<skill-name>/ into skills/<role>/<skill-name>/ first, using the role that worker should own. - After that point, edit only the source copy in skills/.

  1. Use $skill-creator for the draft or improvement loop.

- Let $skill-creator handle generic skill drafting, refinement, and iteration. - Keep SmartWorkers-specific structure here: - routing detail in frontmatter description - safe placeholders in workers.example.jsonc - working files in logs/ - final deliverables in artifacts/ - reusable helpers in scripts/, assets/, and references/

  1. Apply SmartWorkers conventions before finishing.

- Keep name aligned with the skill folder name, and keep that name stable across routine revisions. - Add and maintain a frontmatter metadata.skill_version value so the skill revision is easy to identify without renaming the skill. - Increment metadata.skill_version every time the skill is updated. - Keep the skill body lean and operational. - Keep agents/openai.yaml in sync when present. - Keep documented file references repo-relative; do not hardcode machine-specific absolute filesystem paths. - Avoid secrets and real credentials in skill files. - When the authoring workflow changes, update this skill's assets/, references/, and scripts/ so the installed workflow and the written conventions do not drift apart.

  1. Scaffold safely when a new source folder is needed.

- From the repo root: - bash skills/general/smart-skill-maker/scripts/new_skill.sh --role <role> --name <skill-name> - Preview output goes to logs/smart-skill-maker/<timestamp>/<role>/<skill-name>/. - Use --apply only after reviewing the scaffold and making any SmartWorkers-specific adjustments.

  1. Apply the source skill to Codex with npx skills.

- From the workspace root, run: - npx skills add -a codex -y./skills --skill <skill-name> - Use npx skills as the only install/update path into .agents/skills/. - Do not manually patch .agents/skills/<skill-name>/.

  1. Report the result.

- Name the source folder under skills/. - Confirm the apply command used. - Confirm the installed Codex copy is now managed by npx skills.

Outputs

  • Source skill under skills/<role>/<skill-name>/
  • Installed Codex skill managed under .agents/skills/<skill-name>/
  • Shared templates and authoring guide under skills/general/smart-skill-maker/
  • Any working notes or review material under logs/

Definition of done

  • The source copy exists under skills/<role>/<skill-name>/
  • The skill follows SmartWorkers conventions
  • The skill keeps a stable name and an explicit frontmatter metadata.skill_version
  • metadata.skill_version was incremented for this update
  • The updated skill has been applied to Codex with npx skills add -a codex -y./skills --skill <skill-name>
  • No manual source-of-truth edits were left only inside .agents/skills/
  • If the authoring workflow changed, the supporting assets/, references/, and scripts/ under skills/general/smart-skill-maker/ were updated too

Safety / quality checklist

  • Do not treat .agents/skills/ as the editable source of truth.
  • Do not mix manual copying into .agents/skills/ with npx skills updates.
  • Do not commit secrets or paste credential values into skill files.
  • Do not let the installed smart-skill-maker contract drift away from the shared template and authoring guide.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

33.42%
按下载量换算57

Claude

32.15%
按下载量换算55

Cursor

18.93%
按下载量换算32

Gemini CLI

10.34%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills