CLI tools skills for AI coding assistants (Claude Code, Codex, Antigravity CLI).
| Skill | Description |
|---|---|
| grok-search | Enhanced web search via Grok API |
| sequential-think | Iterative thinking engine for complex problem-solving |
| exa | High-precision semantic search via Exa API |
| time | Time and timezone utilities |
| Serena | Semantic code understanding with IDE-like symbol operations |
| ace-tool | Semantic code search and AI-powered prompt enhancement |
| agent-wiki | Incremental LLM-friendly wiki generator for Obsidian note vaults |
| capability-evolver | Self-evolution engine for AI agents (EvoMap A2A, local Proxy mailbox) |
| cc-agy | Delegate coding/research tasks to Google Antigravity CLI (agy) for external-model execution |
| cc-codex | Delegate coding tasks to Codex CLI for prototyping, debugging, and code review (multi-turn SESSION_ID, sandbox=read-only) |
| codex-cc | Delegate coding tasks from Codex to local Claude Code while preserving Claude runtime customizations by default |
| github-trending-analyzer | Crawl GitHub trending repos, analyze with LLM for Chinese insights, categorize by themes, diff against history; default brief report or opt-in detailed per-project report |
| context7 | Fetch up-to-date library/framework/API docs from Context7 (bypass training cutoff); the co-located CLI normalizes current API payloads and an optional helper can run the same command in an isolated worker |
Some skills provide Python CLIs. Install skill-specific dependencies before use:
pip install PyYAML/plugin marketplace add Dianel555/DSkillsThen browse and install via /plugin.
# List available skills
npx skills add Dianel555/DSkills --list
# Install specific skill
npx skills add Dianel555/DSkills -s grok-searchgit clone https://github.com/Dianel555/DSkills.git
cp -r DSkills/skills/grok-search ~/.claude/skills/| Platform | Skills Directory | Config |
|---|---|---|
| Claude Code | ~/.claude/skills/ |
.claude-plugin/marketplace.json |
| Codex | ~/.codex/skills/ |
Copy from skills/ |
| Antigravity CLI (agy) | ~/.gemini/antigravity-cli/builtin/skills/ |
agy plugin import|install |
# Clone repository
git clone https://github.com/Dianel555/DSkills.git
# Copy skills to Codex directory
cp -r DSkills/skills/grok-search ~/.codex/skills/
# Verify installation
codex --list-skillsUse codex-cc when Codex needs to delegate a turn to local Claude Code. The bridge preserves Claude's normal runtime loading by default, so trusted-workspace CLAUDE.md, skills, plugins, MCP servers, custom commands, and rules remain active unless you explicitly override Claude behavior.
# Clone repository
git clone https://github.com/Dianel555/DSkills.git
# Import a skill as an agy plugin (supports gemini/claude plugin format)
agy plugin import DSkills/skills/grok-search
# Or install from a marketplace (plugin@marketplace form)
agy plugin install grok-search@Dianel555/DSkills
# List imported plugins and verify
agy plugin listNote: agy auto-loads MCP servers from ~/.gemini/antigravity/mcp_config.json and the memory doc at ~/.gemini/GEMINI.md. Use the cc-agy skill to drive agy from Claude Code.
DSkills/
├── README.md
├── skills/ # All skills
│ ├── grok-search/
│ ├── sequential-think/
│ ├── exa/
│ ├── time/
│ ├── serena/
│ ├── ace-tool/
│ ├── agent-wiki/
│ ├── capability-evolver/
│ ├── cc-agy/
│ ├── cc-codex/
│ ├── codex-cc/
│ ├── github-trending-analyzer/
│ └── context7/
└── .claude-plugin/
└── marketplace.json # Metadata
- Create
skills/<skill-name>/SKILL.md - Update
.claude-plugin/marketplace.json
MIT