aidevops 2.82.0 → 2.83.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -5
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -450,7 +450,7 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
|
|
|
450
450
|
|
|
451
451
|
## **Imported Skills**
|
|
452
452
|
|
|
453
|
-
aidevops includes curated skills imported from external
|
|
453
|
+
aidevops includes curated skills imported from external sources. Skills support automatic update tracking:
|
|
454
454
|
|
|
455
455
|
| Skill | Source | Description |
|
|
456
456
|
|-------|--------|-------------|
|
|
@@ -459,24 +459,28 @@ aidevops includes curated skills imported from external repositories. Skills fro
|
|
|
459
459
|
| **remotion** | [remotion-dev/skills](https://github.com/remotion-dev/skills) | Programmatic video creation with React, animations, rendering |
|
|
460
460
|
| **video-prompt-design** | [snubroot/Veo-3-Meta-Framework](https://github.com/snubroot/Veo-3-Meta-Framework) | AI video prompt engineering - 7-component meta prompt framework for Veo 3 |
|
|
461
461
|
| **animejs** | [animejs.com](https://animejs.com) | JavaScript animation library patterns and API (via Context7) |
|
|
462
|
+
| **caldav-calendar** | [ClawdHub](https://clawdhub.com/Asleep123/caldav-calendar) | CalDAV calendar sync via vdirsyncer + khal (iCloud, Google, Fastmail, Nextcloud) |
|
|
463
|
+
| **proxmox-full** | [ClawdHub](https://clawdhub.com/mSarheed/proxmox-full) | Complete Proxmox VE hypervisor management via REST API |
|
|
462
464
|
|
|
463
465
|
**CLI Commands:**
|
|
464
466
|
|
|
465
467
|
```bash
|
|
466
468
|
aidevops skill add <owner/repo> # Import a skill from GitHub
|
|
469
|
+
aidevops skill add clawdhub:<slug> # Import a skill from ClawdHub
|
|
467
470
|
aidevops skill list # List imported skills
|
|
468
471
|
aidevops skill check # Check for upstream updates
|
|
469
472
|
aidevops skill update [name] # Update specific or all skills
|
|
470
473
|
aidevops skill remove <name> # Remove an imported skill
|
|
471
474
|
```
|
|
472
475
|
|
|
473
|
-
Skills are registered in `~/.aidevops/agents/configs/skill-sources.json` with upstream
|
|
476
|
+
Skills are registered in `~/.aidevops/agents/configs/skill-sources.json` with upstream tracking for update detection. Telemetry is disabled - no data is sent to third parties.
|
|
474
477
|
|
|
475
|
-
**Browse community skills:** [skills.sh](https://skills.sh) | **Specification:** [agentskills.io](https://agentskills.io)
|
|
478
|
+
**Browse community skills:** [skills.sh](https://skills.sh) | [ClawdHub](https://clawdhub.com) | **Specification:** [agentskills.io](https://agentskills.io)
|
|
476
479
|
|
|
477
480
|
**Reference:**
|
|
478
481
|
- [Agent Skills Specification](https://agentskills.io/specification) - The open format for SKILL.md files
|
|
479
482
|
- [skills.sh Leaderboard](https://skills.sh) - Discover popular community skills
|
|
483
|
+
- [ClawdHub](https://clawdhub.com) - Skill registry with vector search (Clawdbot ecosystem)
|
|
480
484
|
- [vercel-labs/add-skill](https://github.com/vercel-labs/add-skill) - The upstream CLI tool (aidevops uses its own implementation)
|
|
481
485
|
- [anthropics/skills](https://github.com/anthropics/skills) - Official Anthropic example skills
|
|
482
486
|
- [agentskills/agentskills](https://github.com/agentskills/agentskills) - Specification source and reference library
|
|
@@ -1140,19 +1144,27 @@ This installs the complete framework: 18 primary agents, 536+ subagents, and 141
|
|
|
1140
1144
|
|
|
1141
1145
|
### Importing External Skills
|
|
1142
1146
|
|
|
1143
|
-
Import skills from
|
|
1147
|
+
Import skills from GitHub or ClawdHub using the `aidevops skill` CLI:
|
|
1144
1148
|
|
|
1145
1149
|
```bash
|
|
1146
1150
|
# Import from GitHub (auto-detects format)
|
|
1147
1151
|
aidevops skill add owner/repo
|
|
1148
1152
|
|
|
1149
|
-
#
|
|
1153
|
+
# Import from ClawdHub (skill registry with vector search)
|
|
1154
|
+
aidevops skill add clawdhub:caldav-calendar
|
|
1155
|
+
aidevops skill add https://clawdhub.com/owner/slug
|
|
1156
|
+
|
|
1157
|
+
# More examples
|
|
1150
1158
|
aidevops skill add anthropics/skills/pdf # Specific skill from multi-skill repo
|
|
1151
1159
|
aidevops skill add vercel-labs/agent-skills # All skills from a repo
|
|
1152
1160
|
aidevops skill add expo/skills --name expo-dev # Custom name
|
|
1153
1161
|
aidevops skill add owner/repo --dry-run # Preview without changes
|
|
1154
1162
|
```
|
|
1155
1163
|
|
|
1164
|
+
**Supported sources:**
|
|
1165
|
+
- GitHub repos (`owner/repo` or full URL) — fetched via `git clone`
|
|
1166
|
+
- [ClawdHub](https://clawdhub.com) (`clawdhub:slug` or full URL) — fetched via Playwright browser automation
|
|
1167
|
+
|
|
1156
1168
|
**Supported formats:**
|
|
1157
1169
|
- `SKILL.md` - [Agent Skills standard](https://agentskills.io/specification) (preferred)
|
|
1158
1170
|
- `AGENTS.md` - Claude Code agents format
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.83.0
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED