Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

Static analyzer for `SKILL.md` files. Validates frontmatter, body sizing, file references, and cross-agent compatibility against the [agentskills.io specification](https://agentskills.io/specification). No network calls. No LLM API calls. No file mutations.

786 tests cover all rule modules.
787 tests cover all rule modules.

## Install

Expand Down
1 change: 1 addition & 0 deletions src/skillcheck/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

ECOSYSTEM_FIELDS: frozenset[str] = frozenset({
"license",
"metadata",
"repository",
"homepage",
"template",
Expand Down
15 changes: 15 additions & 0 deletions tests/fixtures/metadata_field.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: metadata-field
description: Validates skills that carry nested marketplace metadata.
metadata:
homepage: https://xquik.com
repository: https://github.com/Xquik-dev/tweetclaw
openclaw:
package: "@xquik/tweetclaw"
tags:
- twitter
- tweet-scraper
- openclaw-plugin
---

Body.
4 changes: 4 additions & 0 deletions tests/test_v1_2_false_positive_fixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ def test_license_field_is_ecosystem_info() -> None:
_assert_ecosystem_field(FIXTURES_DIR / "license_field.md", "license")


def test_metadata_field_is_ecosystem_info() -> None:
_assert_ecosystem_field(FIXTURES_DIR / "metadata_field.md", "metadata")


def test_homepage_field_is_ecosystem_info() -> None:
_assert_ecosystem_field(FIXTURES_DIR / "homepage_field.md", "homepage")

Expand Down