English | 中文
Skills shared by daftAI for improving daily work efficiency with AI Agent.
- Node.js environment installed
- Ability to run
npx buncommands
npx skills add daftAI2026/daftAI-skills| Skill | Description |
|---|---|
| daftai-video-subtitler | Burn subtitles into local videos. Supports SRT/VTT/ASS formats, bilingual subtitle merging and translation |
| daftai-subtitle-translator | Translate subtitle files (SRT/VTT) between languages with terminology consistency |
| daftai-extracting-video-subtitles | Extract timed SRT subtitles from video/audio files using OpenAI Whisper |
| daftai-url-to-markdown | Fetch any URL and convert to markdown using Chrome CDP, with automatic image downloading |
| daftai-chinese-copywriting | Check and fix Chinese copywriting (punctuation, spacing, full-width/half-width) using autocorrect |
| daftai-image-to-svg | Convert transparent or solid-background single-color PNG/SVG artwork into measured, path-only SVG output |
Each skill has its own SKILL.md with detailed instructions. The AI assistant will automatically follow these instructions when the skill is loaded.
User: Extract subtitles from this video
→ AI loads daftai-extracting-video-subtitles skill
→ bun scripts/extract_subtitles.ts video.mp4 en
→ Output: video.srt
User: Burn Chinese subtitles into this video
→ AI loads daftai-video-subtitler skill
→ Detects environment, scans subtitles, burns to video
→ Output: video_zh.mp4
daftAI-skills/
├── README.md
├── README.zh.md
├── CHANGELOG.md
├── CHANGELOG.zh.md
├── AGENTS.md
├── .gitignore
└── skills/
├── daftai-video-subtitler/
│ ├── SKILL.md
│ ├── scripts/ # TypeScript utilities
│ └── references/ # Config docs
├── daftai-subtitle-translator/
│ ├── SKILL.md
│ └── references/ # Glossary
├── daftai-extracting-video-subtitles/
│ ├── SKILL.md
│ └── scripts/ # TypeScript utilities
├── daftai-url-to-markdown/
│ ├── SKILL.md
│ └── scripts/ # TypeScript utilities
├── daftai-chinese-copywriting/
│ ├── SKILL.md
│ ├── scripts/ # TypeScript utilities
│ └── references/ # Config docs
└── daftai-image-to-svg/
├── SKILL.md
├── CLAUDE.md # Module map
├── agents/ # Codex metadata
└── scripts/ # TypeScript converter and tests
Feel free to submit issues and pull requests.
MIT License