DDDFXYqiming

Agent Extensions — Development skill for Claude Code

Development community

跨框架 Agent Skills 合集:视频笔记生成、本地识图、Windows 桌面/浏览器自动化,外加 Hermes 语言路由插件.

How to install Agent Extensions

This entry records only its repository, not the path inside it, so there is no exact command to give. Open DDDFXYqiming/Agent_Extensions and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agent Extensions does

跨框架 Agent Skills 合集:视频笔记生成、本地识图、Windows 桌面/浏览器自动化,外加 Hermes 语言路由插件。DSH 插件已拆分为独立仓库。

Alternatives in Development

  • Getspecstory — Extensions for GH Copilot, Cursor, and Claude Code 1.1k ★
  • Harnessrouter — HarnessRouter Community Edition: the self-hosted, Apache-2.0 edition of the unified interface for agent harnes 618 ★
  • Purpose — Orient yourself in pi-vs-cc — a collection of Pi coding agent extensions and agent specs that progressively de 527 ★

README

简体中文 | [English](README.en.md)

Agent_Extensions

跨框架的 **Agent Skills** 合集。仓库里有两类东西:通用技能(`General_skills/`)不绑框架,任何智能体都能把目录当 Skill 挂载;Hermes 插件(`hermes_plugins/`)给 Hermes 框架用。每一项都自包含,脚本、模板和文档就在各自目录里,克隆下来以后要哪个目录拿哪个,单独就能用。

**DSH 插件不在本仓库**。DeepSeek Harness(DSH)插件已全部拆分为独立仓库,直接装独立仓库即可:

插件 独立仓库
dsh-vision-skill https://github.com/DDDFXYqiming/dsh-vision-skill
dsh-layered-memory https://github.com/DDDFXYqiming/dsh-layered-memory
dsh-annotation-patched https://github.com/DDDFXYqiming/dsh-annotation-patched
dsh-side-panel-patched https://github.com/DDDFXYqiming/dsh-side-panel-patched
dsh-ocr1-memory https://github.com/DDDFXYqiming/dsh-ocr1-memory

本仓库不再收录 DSH 插件源码与快照。

内容总览

1️⃣ 通用技能(`General_skills/`,跨框架)

任何智能体框架(Claude Code / Codex / opencode / DSH / Hermes 等)都能把这里的目录作为 Skill 挂载。

技能 一句话能力 依赖
`vision-skill` 识图:本地图片 → 视觉模型描述(Qwen 动态分辨率,OpenAI 兼容接口) Python 3 + Pillow + 视觉模型 API Key
`video-notes-generator` 视频 → 结构化 Markdown 笔记(字幕/转写、时间戳、抽帧、多模态观察),支持 B 站 / YouTube / 抖音 / 快手 / 本地文件 Python 3 + yt-dlp + ffmpeg,见 scripts/install_deps.sh
`generic-agent-code-run` Windows 桌面应用与真实浏览器自动化(Win32 / UIA / OCR / 截图 / CDP),observe-act-verify 循环 Python 3 + 对应库,Windows

每个技能都有 `SKILL.md`(智能体运行时加载的指令),按需附 `scripts/`、`templates/`、`references/`。

本仓库只收录自己写的技能。上游公开项目(如 [microsoft/markitdown](https://github.com/microsoft/markitdown)、[hugohe3/ppt-master](https://github.com/hugohe3/ppt-master))不在此镜像,请直接装上游。

2️⃣ Hermes 插件(`hermes_plugins/`)

插件 一句话能力 依赖
`language-router` v5.0 自适应语言路由,流程为 Planner-first → Worker → 可选 Verifier → Digest(hooks 挂载 pre_llm_call 等) Hermes 框架

目录结构

Agent_Extensions/
├── General_skills/            # 通用技能(跨框架,挂载即用)
│   ├── vision-skill/
│   ├── video-notes-gen