agent-skills

作者 Misaka-Mikoto-Tech已验证

Reusable AI agent skills for Codex, including a PowerShell skill for safe Windows command invocation and optional MCP utilities.

202
Stars
8
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/Misaka-Mikoto-Tech/agent-skills

快速入门

使用 agent-skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

agent-skills

A personal collection of reusable AI agent skills and MCP-related utilities.

这个仓库用于收集个人日常使用中沉淀下来的 agent skills,包括网页读取、命令行调用规范、自动化流程、工具集成经验等。内容以可直接复制使用的 SKILL.md 为主,后续也可能加入 MCP server 配置和示例。

安装

复制需要的 skill 到通用的 .agents/skills 技能目录即可,支持该目录的 agent 可以共享同一份安装。

通用安装

推荐使用 PowerShell 7+ (pwsh)。powershell-safe-invocation skill 针对现代 PowerShell 行为编写,尤其关注原生命令参数传递、路径、引号、编码和进程启动。

$repo = (Get-Location).Path
$target = "$env:USERPROFILE\.agents\skills"

New-Item -ItemType Directory -Force -Path $target | Out-Null
Copy-Item -LiteralPath "$repo\skills\bilibili-page-reader" -Destination $target -Recurse -Force
Copy-Item -LiteralPath "$repo\skills\powershell-safe-invocation" -Destination $target -Recurse -Force
Copy-Item -LiteralPath "$repo\skills\locus-unity-bridge" -Destination $target -Recurse -Force

自定义技能目录

如果你的 agent 不支持 ~/.agents/skills,把 $target 改成它使用的技能目录即可。

bilibili-page-reader 的工作环境与依赖

bilibili-page-reader 用来读取 Bilibili 视频页内容:优先获取投稿字幕、弹幕摘要和评论;如果没有投稿字幕,再走音频下载和本地 ASR 转写。

运行这个 skill 主要依赖这几类工具:

  • Kimi WebBridge:让 agent 访问真实浏览器页面,用于读取当前 Bilibili 页面状态和登录后可见内容。
  • Bilibili Evolved:提供投稿字幕、弹幕等页面内数据来源。
  • Node.js:用于请求 Bilibili playurl API 和下载音频流。
  • ffmpeg / ffprobe:用于音频格式转换和时长读取。
  • Python + FunASR:无投稿字幕时,把下载到的音频转写成 SRT/VTT/JSON。

相关辅助文件:

  • skills/bilibili-page-reader/audio2srt.py:音频转字幕脚本。
  • skills/bilibili-page-reader/clean_srt.py:SRT 清理脚本。
  • skills/bilibili-page-reader/agents/openai.yaml:agent 界面元数据。

更具体的执行步骤、兜底策略和常见问题写在 skills/bilibili-page-reader/SKILL.md 中。

locus-unity-bridge 的工作环境与依赖

locus-unity-bridge 用于通过 Locus 检测并控制真实 Unity Editor,运行环境是 Windows 和 PowerShell 7。实际连接需要目标 Unity 项目已经安装 Locus package,并启用对应项目的 Bridge。

skill 会先通过 probe 区分缺少 package、Bridge 未启用和 Unity 不可达等状态;缺少 package 时只提供诊断,不会自动安装或修改项目。

可用 Skills

Skill说明
bilibili-page-reader读取 Bilibili 视频页,包括投稿字幕、弹幕摘要、评论;无字幕时可通过 FunASR 下载音频并转写。
locus-unity-bridge通过 Locus 检测并控制真实 Unity Editor,支持项目/package/Bridge 诊断、C# 执行和脚本重新编译。
powershell-safe-invocationWindows agent 的安全 PowerShell 调用规范,覆盖原生命令参数、路径、引号、编码和进程启动。

仓库结构

skills/   可复用的 agent skills
mcp/      预留给未来的 MCP servers、配置和示例

每个 skill 都放在独立目录中,并以 SKILL.md 作为入口。有些 skill 还会包含辅助脚本、示例或 agent 专用元数据。

许可证

MIT

常见问题

What is agent-skills?

agent-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Misaka-Mikoto-Tech. Reusable AI agent skills for Codex, including a PowerShell skill for safe Windows command invocation and optional MCP utilities. It has 202 GitHub stars.

Is agent-skills safe to use?

Yes. agent-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install agent-skills?

Clone the repository with "git clone https://github.com/Misaka-Mikoto-Tech/agent-skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is agent-skills written in?

agent-skills is primarily written in Python. It is open-source under Misaka-Mikoto-Tech on GitHub, so you can review or fork the full source.

Are there alternatives to agent-skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agent-skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情