You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds one skill under skills/, plus the regenerated docs/README.skills.md row.
What it does
Answers "should I provide liquidity to this pool?" with a number, a verdict, and the evidence for how often that verdict has been right — rather than leaving the model to interpret raw TVL and APR.
Output — a 0-100 score and an Enter/Hold/Exit/Reduce/Avoid verdict, with confidence calibrated per protocol rather than pooled.
Safety
The skill is read-only and installs nothing. It documents GET requests against a public API and nothing else — no transactions, no wallet, no seed phrase or private key, no curl | sh bootstrap, and no API key (the API takes no authentication; an optional free key only raises a rate limit).
On honesty
The skill deliberately documents its own weak spots rather than hiding them, because a skill that overstates its accuracy is worse than no skill:
prefer calibrated_confidence over the raw value,
treat a fee APR above 500% as a display bound rather than a measurement,
and the REDUCE verdict class currently has a 0.00 hit rate on n=16 — if the model surfaces a REDUCE, the skill instructs it to say so.
It also tells the model to fetch /track-record rather than quoting numbers from the file, since they move.
Checks
npm run skill:validate → "All 393 skills are valid". npm run build regenerated docs/README.skills.md; that file's diff is exactly one added line, and no other generated output changed. Every endpoint cited in the skill returns 200 as of this PR.
Disclosure: I maintain the service this skill documents.
| [acreadiness-assess](../skills/acreadiness-assess/SKILL.md)<br />`gh skills install github/awesome-copilot acreadiness-assess` | Run the AgentRC readiness assessment on the curre
🔴
autoyes-package-exec
skills/wealthville-pool-scoring/SKILL.md
151
claude mcp add wealthville -- npx -y @wealthville/mcp-server
🟠
package-exec-command
skills/wealthville-pool-scoring/SKILL.md
151
claude mcp add wealthville -- npx -y @wealthville/mcp-server
This is an automated soft-gate report. Findings indicate review targets and do not block merge by themselves.
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR contributes a single new Agent Skill, wealthville-pool-scoring, which documents a read-only public HTTP API (and equivalent MCP tools) for scoring DeFi liquidity pools and returning Enter/Hold/Exit/Reduce/Avoid verdicts with a published, miss-inclusive track record. It fits the repository's community-driven skill collection under skills/, with the auto-generated README row added. The author discloses they maintain the documented service.
Changes:
Add skills/wealthville-pool-scoring/SKILL.md describing the pool-scoring API endpoints, verdict semantics, honesty/limitations guidance, and MCP alternative.
Add the corresponding generated row to docs/README.skills.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File
Description
skills/wealthville-pool-scoring/SKILL.md
New skill defining valid front matter and read-only API usage guidance for DeFi pool scoring; passes skill validation.
docs/README.skills.md
Adds the auto-generated skills index row for the new skill (single line, correctly ordered).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds one skill under
skills/, plus the regenerateddocs/README.skills.mdrow.What it does
Answers "should I provide liquidity to this pool?" with a number, a verdict, and the evidence for how often that verdict has been right — rather than leaving the model to interpret raw TVL and APR.
Safety
The skill is read-only and installs nothing. It documents
GETrequests against a public API and nothing else — no transactions, no wallet, no seed phrase or private key, nocurl | shbootstrap, and no API key (the API takes no authentication; an optional free key only raises a rate limit).On honesty
The skill deliberately documents its own weak spots rather than hiding them, because a skill that overstates its accuracy is worse than no skill:
calibrated_confidenceover the raw value,It also tells the model to fetch
/track-recordrather than quoting numbers from the file, since they move.Checks
npm run skill:validate→ "All 393 skills are valid".npm run buildregenerateddocs/README.skills.md; that file's diff is exactly one added line, and no other generated output changed. Every endpoint cited in the skill returns 200 as of this PR.Disclosure: I maintain the service this skill documents.