在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用verify-validate-skill
Validation phase for /assist:verify command - validates each component
星标0
分支0
更新时间2026年1月20日 07:56
SKILL.md
readonly菜单
Validation phase for /assist:verify command - validates each component
Aggregation phase for /assist:health-check command - produces final report
Analysis phase for /assist:health-check command - scores each component
Discovery phase for /assist:health-check command - finds components for health analysis
Common schema validation rules for all plugin components
Connectivity phase for /assist:verify command - validates cross-references
Discovery phase for /assist:verify command - finds all components to validate
| name | verify-validate-skill |
| description | Validation phase for /assist:verify command - validates each component |
| triggers | ["verify validate phase","component validation","schema validation"] |
The second phase of the /assist:verify workflow. Validates each discovered component against schemas.
Perform detailed validation of each component found in the discovery phase.
| Check | Rule |
|---|---|
| File exists | SKILL.md must exist in skill directory |
| YAML frontmatter | Must have valid YAML between --- delimiters |
| Required fields | name, description, triggers |
| Triggers format | Must be a list with at least one item |
| Content present | Must have content after frontmatter |
| Check | Rule |
|---|---|
| File exists | <name>.md must exist in agents/ |
| YAML frontmatter | Must have valid YAML between --- delimiters |
| Required fields | name, description, tools |
| Tools format | Must be a list of valid tool names |
| System prompt | Must have content (system prompt) after frontmatter |
| Check | Rule |
|---|---|
| File exists | <name>.md must exist in commands/ |
| YAML frontmatter | Must have valid YAML between --- delimiters |
| Required fields | name, description |
| Optional fields | allowed-tools, argument-hint |
| Check | Rule |
|---|---|
| hooks.json syntax | Must be valid JSON |
| Event types | Must use valid event types (PreToolUse, PostToolUse, etc.) |
| Script references | Referenced Python scripts must exist |
| Python syntax | Hook scripts must have valid Python syntax |
| Check | Rule |
|---|---|
| Valid JSON | Must be parseable |
| Required fields | name, version, description, author |
| Author format | Must be object with name field |
| Version format | Semantic version recommended |
VALIDATION_REPORT
=================
RESULTS:
skills/router-skill/SKILL.md:
[PASS] File exists
[PASS] YAML frontmatter valid
[PASS] Required fields present
[PASS] Triggers format valid
agents/my-agent.md:
[PASS] File exists
[FAIL] Missing 'tools' field
SUMMARY:
- Checked: 10 components
- Passed: 9
- Failed: 1
ISSUES:
- agents/my-agent.md: Missing required 'tools' field
To proceed to the connectivity phase, provide:
validated_count: Number of components validatedpassed_count: Number passing all checksfailed_count: Number with failuresissues: List of issues found