Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
📝 WalkthroughWalkthroughAdded a new AI & LLMs skill entry Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested labels
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (2)
categories/ai-and-llms.md (1)
5-5:⚠️ Potential issue | 🟡 MinorUpdate the skill count to reflect the new addition.
Since this PR adds one new skill (agentbase), the count should be updated from "184 skills" to "185 skills".
🔢 Proposed fix
-**184 skills** +**185 skills**🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@categories/ai-and-llms.md` at line 5, Update the skills count text in categories/ai-and-llms.md from "184 skills" to "185 skills" to reflect the added agentbase skill; locate the literal string "**184 skills**" and replace it with "**185 skills**".README.md (1)
181-181:⚠️ Potential issue | 🟡 MinorUpdate the AI & LLMs skill count in the Table of Contents.
The count should be incremented from "(176)" to "(177)" to reflect the addition of the agentbase skill.
🔢 Proposed fix
-| [Browser & Automation](`#browser--automation`) (322) | [AI & LLMs](`#ai--llms`) (176) | [Smart Home & IoT](`#smart-home--iot`) (41) | +| [Browser & Automation](`#browser--automation`) (322) | [AI & LLMs](`#ai--llms`) (177) | [Smart Home & IoT](`#smart-home--iot`) (41) |🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@README.md` at line 181, Update the Table of Contents entry for "AI & LLMs" so the displayed skill count reflects the added agentbase skill: change the "(176)" after the "AI & LLMs" anchor text to "(177)" in the README's TOC line that currently reads "| [Browser & Automation](`#browser--automation`) (322) | [AI & LLMs](`#ai--llms`) (176) | [Smart Home & IoT](`#smart-home--iot`) (41) |".
🤖 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 624: Update the displayed skill count in the README link text from "184"
to "185" so the string "**[View all 184 skills in AI & LLMs
→](categories/ai-and-llms.md)**" reads "**[View all 185 skills in AI & LLMs
→](categories/ai-and-llms.md)**"; locate and edit the exact link text in
README.md to increment the number to reflect the added agentbase skill.
---
Outside diff comments:
In `@categories/ai-and-llms.md`:
- Line 5: Update the skills count text in categories/ai-and-llms.md from "184
skills" to "185 skills" to reflect the added agentbase skill; locate the literal
string "**184 skills**" and replace it with "**185 skills**".
In `@README.md`:
- Line 181: Update the Table of Contents entry for "AI & LLMs" so the displayed
skill count reflects the added agentbase skill: change the "(176)" after the "AI
& LLMs" anchor text to "(177)" in the README's TOC line that currently reads "|
[Browser & Automation](`#browser--automation`) (322) | [AI & LLMs](`#ai--llms`)
(176) | [Smart Home & IoT](`#smart-home--iot`) (41) |".
🪄 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: 204a808f-9d3c-4128-a806-b6a81986d3bc
📒 Files selected for processing (2)
README.mdcategories/ai-and-llms.md
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 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 624: The counts for the AI & LLMs category are inconsistent: the README
TOC shows 177, the category header declares 185, and the actual list in
categories/ai-and-llms.md has 159 entries. Fix by choosing one source of truth:
either (A) update the displayed counts to match the list (change the link text
"**View all 185 skills in AI & LLMs →**", the category header in
categories/ai-and-llms.md, and the README TOC entry to "159"), or (B) update
categories/ai-and-llms.md to add the missing 26 entries so the header, README
TOC, and the link text remain at 185; ensure you update the specific strings
("View all X skills in AI & LLMs →", the category header in
categories/ai-and-llms.md, and the README TOC entry) so all three places match.
🪄 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: 54ecb5cf-c3b4-47d6-a621-ce428f00a779
📒 Files selected for processing (2)
README.mdcategories/ai-and-llms.md
✅ Files skipped from review due to trivial changes (1)
- categories/ai-and-llms.md
| - [agentbase](https://clawskills.sh/skills/revmischa-agentbase) - Shared knowledge base for AI agents via MCP. | ||
|
|
||
| > **[View all 184 skills in AI & LLMs →](categories/ai-and-llms.md)** | ||
| > **[View all 185 skills in AI & LLMs →](categories/ai-and-llms.md)** |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify AI & LLMs displayed counts vs actual entries (read-only)
set -euo pipefail
echo "== Count entries in categories/ai-and-llms.md =="
entry_count=$(awk '/^\s*-\s+\[/{c++} END{print c+0}' categories/ai-and-llms.md)
echo "entries: $entry_count"
echo
echo "== Extract declared category count in categories/ai-and-llms.md =="
awk '/^\*\*[0-9]+ skills\*\*/{print; exit}' categories/ai-and-llms.md
echo
echo "== Extract README AI & LLMs TOC count and View-all count =="
awk 'NR==181 {print "TOC line:", $0} NR==624 {print "View-all line:", $0}' README.mdRepository: VoltAgent/awesome-openclaw-skills
Length of output: 507
Reconcile inconsistent entry counts in AI & LLMs category.
The "View all 185 skills" link displays a count that does not match the actual content: the category file contains 159 bullet-point entries, the category header declares 185 skills, and the README TOC shows 177. These numbers must be aligned—either by updating the displays to 159 or by updating the source list to match the declared totals.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@README.md` at line 624, The counts for the AI & LLMs category are
inconsistent: the README TOC shows 177, the category header declares 185, and
the actual list in categories/ai-and-llms.md has 159 entries. Fix by choosing
one source of truth: either (A) update the displayed counts to match the list
(change the link text "**View all 185 skills in AI & LLMs →**", the category
header in categories/ai-and-llms.md, and the README TOC entry to "159"), or (B)
update categories/ai-and-llms.md to add the missing 26 entries so the header,
README TOC, and the link text remain at 185; ensure you update the specific
strings ("View all X skills in AI & LLMs →", the category header in
categories/ai-and-llms.md, and the README TOC entry) so all three places match.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
♻️ Duplicate comments (1)
categories/ai-and-llms.md (1)
5-5:⚠️ Potential issue | 🟡 MinorCount is still inconsistent with the visible list in this category.
Line 5 declares 185 skills, but the visible entries in this file appear lower. Please align this header with the actual list and keep README AI & LLMs counts in sync (TOC and “View all …” line) to avoid drift.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@categories/ai-and-llms.md` at line 5, Update the header line that currently reads "**185 skills**" in categories/ai-and-llms.md to match the actual number of visible entries in this file, and also update the corresponding count in the README (the AI & LLMs TOC entry and the "View all …" line) so all three places (the header, the TOC entry, and the "View all" summary) remain consistent; locate the header text "**185 skills**", the README's AI & LLMs TOC entry, and the "View all …" summary string and replace their numeric value with the correct count.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Duplicate comments:
In `@categories/ai-and-llms.md`:
- Line 5: Update the header line that currently reads "**185 skills**" in
categories/ai-and-llms.md to match the actual number of visible entries in this
file, and also update the corresponding count in the README (the AI & LLMs TOC
entry and the "View all …" line) so all three places (the header, the TOC entry,
and the "View all" summary) remain consistent; locate the header text "**185
skills**", the README's AI & LLMs TOC entry, and the "View all …" summary string
and replace their numeric value with the correct count.
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 2379a0ee-10d7-4282-a1a0-60c0b3f4662f
📒 Files selected for processing (2)
README.mdcategories/ai-and-llms.md
Summary
Adding AgentBase to the AI & LLMs category.
Summary by CodeRabbit