Add Midas Skill β self-learning wealth extraction engine#399
Add Midas Skill β self-learning wealth extraction engine#399hermesnest wants to merge 1 commit intoVoltAgent:mainfrom
Conversation
Added to Personal Development category.
π WalkthroughWalkthroughREADME.md was updated to include a new "midas" entry in the Personal Development category list with its ClawHub link and descriptive text. No other modifications to structure or existing items were made. 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 Warning |
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 (1)
README.md (1)
188-188:β οΈ Potential issue | π‘ MinorUpdate the category count.
The Personal Development category count should be updated to reflect the addition of the new skill. The "View all" text at line 823 shows 51 skills, but the Table of Contents still shows (50).
π’ Proposed fix to update the count
-| [CLI Utilities](`#cli-utilities`) (180) | [Personal Development](`#personal-development`) (50) | [Gaming](`#gaming`) (35) | +| [CLI Utilities](`#cli-utilities`) (180) | [Personal Development](`#personal-development`) (51) | [Gaming](`#gaming`) (35) |π€ Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@README.md` at line 188, Update the Table of Contents entry for Personal Development to reflect the new total of 51 items: find the string "[Personal Development](`#personal-development`) (50)" and change the numeric count to "(51)" so it matches the "View all" count shown elsewhere.
π€ 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 821: The README entry for "midas" violates guidelines: replace the
ClawHub link with the canonical GitHub URL for the skill (reference the "midas"
entry text), confirm the repository exists in the openclaw/skills repo before
keeping it, and if it is finance-related remove or reframe it to a non-finance
use-case; also shorten the description to 10 words or fewer (or drop the entry
if it cannot be reframed), and update the Personal Development TOC count from
(50) to (51) accordingly.
---
Outside diff comments:
In `@README.md`:
- Line 188: Update the Table of Contents entry for Personal Development to
reflect the new total of 51 items: find the string "[Personal
Development](`#personal-development`) (50)" and change the numeric count to "(51)"
so it matches the "View all" count shown elsewhere.
πͺ Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| - [ezbookkeeping](https://clawskills.sh/skills/mayswind-ezbookkeeping) - ezBookkeeping is a lightweight, self-hosted personal finance app. | ||
| - [fix-life-in-1-day](https://clawskills.sh/skills/evgyur-fix-life-in-1-day) - Fix your entire life in 1 day. | ||
| - [founder-coach](https://clawskills.sh/skills/goforu-founder-coach) - AI-powered startup mindset coach that helps founders upgrade. | ||
| - [midas](https://clawhub.ai/realteamprinz/midas) - Self-learning wealth extraction engine. Feed it anyone β it extracts their wealth operating system across 6 dimensions. Open source, self-learning. |
There was a problem hiding this comment.
π§© Analysis chain
π Script executed:
#!/bin/bash
# Description: Verify link domain consistency and check if skill exists in official repo
# Check the link domain pattern used by other skills in Personal Development section
echo "=== Checking link domains in Personal Development section ==="
rg -A 1 "Personal Development" README.md | rg -oP 'https://[^)]+' | head -20
# Search for any existing clawhub.ai links in the file
echo -e "\n=== Searching for clawhub.ai links ==="
rg 'clawhub\.ai' README.md
# Search for clawskills.sh links (expected pattern)
echo -e "\n=== Count of clawskills.sh links ==="
rg -c 'clawskills\.sh' README.mdRepository: VoltAgent/awesome-openclaw-skills
Length of output: 764
π Script executed:
#!/bin/bash
# Verify key claims from the original review
# 1. Check the actual contributing guidelines (line 93)
echo "=== Contributing guidelines around line 93 ==="
sed -n '85,100p' README.md
# 2. Check the TOC count at line 188
echo -e "\n=== Table of Contents line 188 ==="
sed -n '185,190p' README.md
# 3. Count personal development entries
echo -e "\n=== Count of Personal Development entries ==="
sed -n '790,830p' README.md | rg '^\- \[' | wc -l
# 4. Check if there's a GitHub link mentioned in context
echo -e "\n=== Check context around midas entry ==="
sed -n '815,825p' README.mdRepository: VoltAgent/awesome-openclaw-skills
Length of output: 2768
π Script executed:
#!/bin/bash
# Check if there's a way to verify midas is in the official OpenClaw skills repo
# Search for any references to the official skills repo structure
echo "=== Checking CONTRIBUTING.md for repo structure ==="
head -50 CONTRIBUTING.md
# Look for any automation or PR verification that might show if skill was added to official repo
echo -e "\n=== Search for any GitHub workflow or CI config ==="
fd -e "yml\|yaml" | grep -i "workflow\|action" | head -5Repository: VoltAgent/awesome-openclaw-skills
Length of output: 2728
Multiple guideline violations: link format, word limit, and potentially finance-restricted category.
The midas entry violates several requirements per CONTRIBUTING.md:
-
Incorrect link format: The entry uses only the ClawHub link, but per contributing guidelines, the GitHub link should be primary:
https://github.com/openclaw/skills/tree/main/skills/realteamprinz/midas. The ClawHub link is for the PR description only. -
Description exceeds word limit: The description is ~25 words ("Self-learning wealth extraction engine. Feed it anyone β it extracts their wealth operating system across 6 dimensions. Open source, self-learning."), but guidelines require concise descriptions of 10 words or fewer.
-
Finance-related skill in excluded category: The skill's description focuses on "wealth extraction," which appears finance-related. Contributing guidelines explicitly state: "No crypto, blockchain, DeFi, or finance-related skills for now."
-
Unverified repository: Guidelines require the skill to already be published in the official OpenClaw skills repo. Confirm the midas skill exists there before merging.
-
TOC count not updated: Table of Contents shows (50) for Personal Development, but should show (51) after adding this entry.
π€ Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@README.md` at line 821, The README entry for "midas" violates guidelines:
replace the ClawHub link with the canonical GitHub URL for the skill (reference
the "midas" entry text), confirm the repository exists in the openclaw/skills
repo before keeping it, and if it is finance-related remove or reframe it to a
non-finance use-case; also shorten the description to 10 words or fewer (or drop
the entry if it cannot be reframed), and update the Personal Development TOC
count from (50) to (51) accordingly.
Midas Skill extracts wealth operating systems from any public figure or personal data across 6 dimensions: Money Engine, Deal Architecture, Investment Thesis, Risk Profile, Leverage Model, Exit Pattern. Self-learning β gets sharper with every input. Open source, MIT licensed.
ClawHub: https://clawhub.ai/realteamprinz/midas
GitHub: https://github.com/realteamprinz/midas-skill
Summary by CodeRabbit