Skip to content

Add skill: gxcun17/Skywork (6 Skills)#389

Closed
LuanKunLun wants to merge 2 commits intoVoltAgent:mainfrom
LuanKunLun:patch-1
Closed

Add skill: gxcun17/Skywork (6 Skills)#389
LuanKunLun wants to merge 2 commits intoVoltAgent:mainfrom
LuanKunLun:patch-1

Conversation

@LuanKunLun
Copy link
Copy Markdown
Contributor

@LuanKunLun LuanKunLun commented Apr 7, 2026

Adding Skyworks Skills sets from different areas of Skills production.
Agent Skills for AI office suites, including AI PPT, AI Document, AI Excel, AI Image, AI Search/DeepResearch and AI Music.
These skills can be used by any skills-compatible agent, including Claude Code, Codex CLI and OpenClaw.

skywork-document (placed in PDF&Documents)

skywork-ppt (placed in Coding Agents & IDEs)

skywork-design (placed in Image & Video Generation)

skywork-excel (placed in Data & Analytics)

skywork-search (placed in Search & Research)

skywork-music-maker (placed in Coding Agents & IDEs)

Summary by CodeRabbit

  • Documentation
    • Added documentation for six new skills: PowerPoint generation & editing (skywork-ppt), professional music creation (skywork-music-maker), image-based design & editing (skywork-design), real-time AI web search (skywork-search), spreadsheet operations with report generation (skywork-excel), and prompt-to-document conversion with integrated web search (skywork-document).

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 7, 2026

📝 Walkthrough

Walkthrough

Six new OpenClaw skill entries were appended to the repository README, each linking to its corresponding openclaw/skills/.../<skill>/SKILL.md page and briefly describing the skill's capability.

Changes

Cohort / File(s) Summary
README Documentation
README.md
Added six new skill entries: skywork-ppt, skywork-music-maker, skywork-design, skywork-search, skywork-excel, skywork-document, each with a short description and link to its openclaw/skills/.../<skill>/SKILL.md documentation page.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested labels

weekly-merge-queue

Poem

🐰
Six new skills hopped into view today,
Slides, songs, and sheets to brighten the way.
Designs and docs and searches to chart,
Little paws added each helpful part.
Hooray — a spring of features at play! 🎉

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'Add skill: gxcun17/Skywork (6 Skills)' accurately summarizes the main change—adding six Skywork skills to the README documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@README.md`:
- Line 655: Update the README entry for the skill referenced by [skywork-excel]
so the phrase "for create, analyze and generate reports" is grammatically
corrected to "to create, analyze and generate reports"; edit the markdown line
that links to skills/gxcun17/skywork-excel/SKILL.md (the [skywork-excel] list
item) and replace "for create" with "to create".
- Around line 250-251: README lists six new skills (skywork-ppt,
skywork-music-maker, skywork-design, skywork-search, skywork-excel,
skywork-document) but their corresponding category markdown files are missing
entries and there's a grammar bug at line 655; update the appropriate category
files by adding the matching list entries for each skill (e.g., add skywork-ppt
and skywork-excel to the productivity category, skywork-music-maker to
creative-content-generation, skywork-design to image-and-video-generation,
skywork-search to search-and-research, and skywork-document to its relevant
category) using the same link/description format as in README.md so discovery is
consistent, and fix the grammar at the noted line by changing "for create,
analyze and generate reports" to "for creating, analyzing and generating
reports" (or another consistent gerund form).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 76aa997f-5adc-41fc-b32a-910807690fae

📥 Commits

Reviewing files that changed from the base of the PR and between 400ce91 and 2dce954.

📒 Files selected for processing (1)
  • README.md

Comment thread README.md
Comment on lines +250 to +251
- [skywork-ppt](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-ppt/SKILL.md) - Generate, imitate, and edit PowerPoint presentations with skywork.
- [skywork-music-maker](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-music-maker/SKILL.md) - Create professional music with Mureka AI.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify that each newly added skill slug appears in README and category markdown files.
set -euo pipefail

slugs=(
  skywork-ppt
  skywork-music-maker
  skywork-design
  skywork-search
  skywork-excel
  skywork-document
)

echo "Checking README.md..."
for s in "${slugs[@]}"; do
  rg -n --fixed-strings "$s" README.md || true
done

echo
echo "Checking category files..."
for s in "${slugs[@]}"; do
  echo "---- $s ----"
  rg -n --fixed-strings "$s" categories/*.md || true
done

Repository: VoltAgent/awesome-openclaw-skills

Length of output: 1377


Add these six skills to the corresponding category markdown files

All six newly added skills appear in README.md but are completely absent from their respective category files. This creates an inconsistent discovery experience between the main list and category pages.

The missing entries are:

  • skywork-ppt (should be in categories/productivity.md or related)
  • skywork-music-maker (should be in categories/creative-content-generation.md or related)
  • skywork-design (should be in categories/image-and-video-generation.md)
  • skywork-search (should be in categories/search-and-research.md)
  • skywork-excel (should be in categories/productivity.md or related)
  • skywork-document (should be in appropriate category)

Additionally, line 655 has a grammar issue: "for create, analyze and generate reports" should read "for creating, analyzing and generating reports" or use consistent gerunds.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` around lines 250 - 251, README lists six new skills (skywork-ppt,
skywork-music-maker, skywork-design, skywork-search, skywork-excel,
skywork-document) but their corresponding category markdown files are missing
entries and there's a grammar bug at line 655; update the appropriate category
files by adding the matching list entries for each skill (e.g., add skywork-ppt
and skywork-excel to the productivity category, skywork-music-maker to
creative-content-generation, skywork-design to image-and-video-generation,
skywork-search to search-and-research, and skywork-document to its relevant
category) using the same link/description format as in README.md so discovery is
consistent, and fix the grammar at the noted line by changing "for create,
analyze and generate reports" to "for creating, analyzing and generating
reports" (or another consistent gerund form).

Comment thread README.md Outdated
- [ipinfo](https://clawskills.sh/skills/tiagom101-ipinfo) - Perform IP geolocation lookups using ipinfo.io API.
- [kradleverse-cleanup](https://clawskills.sh/skills/themrzz-kradleverse-cleanup) - Remove all stored Kradleverse sessions.
- [linkdapi](https://clawskills.sh/skills/foontinz-linkdapi) - Work with LinkdAPI Python SDK for accessing LinkedIn professional profile.
- [skywork-excel](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-excel/SKILL.md) - AI-powered spreadsheet operations for create, analyze and generate reports.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix grammar in skill description

“for create” should be “to create” for readability.

✏️ Suggested wording
-- [skywork-excel](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-excel/SKILL.md) - AI-powered spreadsheet operations for create, analyze and generate reports.
+- [skywork-excel](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-excel/SKILL.md) - AI-powered spreadsheet operations to create, analyze, and generate reports.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- [skywork-excel](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-excel/SKILL.md) - AI-powered spreadsheet operations for create, analyze and generate reports.
- [skywork-excel](https://github.com/openclaw/skills/blob/main/skills/gxcun17/skywork-excel/SKILL.md) - AI-powered spreadsheet operations to create, analyze, and generate reports.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 655, Update the README entry for the skill referenced by
[skywork-excel] so the phrase "for create, analyze and generate reports" is
grammatically corrected to "to create, analyze and generate reports"; edit the
markdown line that links to skills/gxcun17/skywork-excel/SKILL.md (the
[skywork-excel] list item) and replace "for create" with "to create".

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
README.md (1)

250-251: Keep section/count metadata in sync with these new additions.

After adding new items here, the per-section “View all X skills” counts (and related aggregate counters) should be updated in the same PR to avoid stale discovery metadata.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` around lines 250 - 251, The README additions for "skywork-ppt" and
"skywork-music-maker" require updating the corresponding per-section and
aggregate skill counts referenced by the "View all X skills" strings and any
aggregate counters; locate the sections containing the "View all X skills"
badge/text and the global aggregate counters (search for the literal "View all"
and existing numeric counters), increment each affected section count and the
overall total to reflect the two new skills, and ensure any JSON/YAML metadata
or badges used for discovery are updated in the same PR so counts remain
consistent.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@README.md`:
- Around line 250-251: The README additions for "skywork-ppt" and
"skywork-music-maker" require updating the corresponding per-section and
aggregate skill counts referenced by the "View all X skills" strings and any
aggregate counters; locate the sections containing the "View all X skills"
badge/text and the global aggregate counters (search for the literal "View all"
and existing numeric counters), increment each affected section count and the
overall total to reflect the two new skills, and ensure any JSON/YAML metadata
or badges used for discovery are updated in the same PR so counts remain
consistent.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: db7f6da2-9b70-4e28-8421-392148dc471d

📥 Commits

Reviewing files that changed from the base of the PR and between 2dce954 and 6a0fbfa.

📒 Files selected for processing (1)
  • README.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants