Add OpenClaw skill to agents category#27
Conversation
- Comprehensive BabyAGI skill with 389 lines of focused guidance - Advanced usage documentation with custom tools and scaling strategies - Troubleshooting guide for common issues - Added to agents category in marketplace - Includes code examples, workflows, and best practices
- Replace advanced-usage.md with task-management.md - Add tools-integration.md for comprehensive tool integration guide - Update SKILL.md references links - Improve documentation structure to match other agent skills - Add detailed task management strategies and tool integration patterns
This reverts commit cfe98e1.
zechenzhangAGI
left a comment
There was a problem hiding this comment.
Thanks @liangzhang-keepmoving. There's real effort here, but the PR needs to be split and substantially reworked before it can land.
1. Please split this into separate PRs. It bundles two unrelated skills — OpenClaw and BabyAGI. They should be reviewed independently. (Note: the BabyAGI skill here has the same fabricated-API problem that led me to close #25 — its BabyAGI(...) class/signature doesn't match any released package — so it would also need a real-API rewrite.)
2. The OpenClaw content describes software that doesn't exist as written. The skill documents a Python library (from openclaw import OpenClaw, pip install -e ., PermissionChecker, agent.http_get(...)), but the real openclaw/openclaw is a TypeScript project — the install steps, imports, config files, and class hierarchy don't correspond to it. It needs to be rewritten against the actual repo.
3. It also conflicts with how OpenClaw already appears in this repo. OpenClaw is an established execution platform here (README supported-agents list, 0-autoresearch-skill heartbeat/cron sections). A new skill should reconcile with that, not present it as a separate Python agent framework.
4. Standards fixes required:
- English only — the SKILL.md and all three references are currently almost entirely in Chinese.
- Frontmatter — uses
title/type/excerpt; needs the required schema:name(kebab-case gerund),version,license: MIT,author, Title-Case tags. - Length — SKILL.md is 585 lines; cap is 500.
- marketplace.json — the category description mentions only BabyAGI; reconcile after the split.
If you'd like to proceed, a focused OpenClaw PR (English, real TypeScript API, correct frontmatter, ≤500 lines) is welcome — happy to review.
This PR adds the OpenClaw skill to the agents category. OpenClaw is an operating system-level AI Agent framework for real system execution. The PR includes: