在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:69
forks:10
updated:2026年3月25日 05:51
SKILL.md
Validate custom agent file format and structure
Generate custom agent from template
Verify development environment is ready
Guided 5-minute onboarding for Director Mode Lite
Delegate tasks to Gemini CLI to save Claude context
Generate hook script from template
| name | hooks-check |
| description | Validate hooks configuration and scripts |
| user-invocable | true |
Validate hooks configuration in .claude/settings.json and hook scripts.
Verify hooks section exists and is valid.
{
"hooks": {
"PreToolUse": [...],
"PostToolUse": [...],
"UserPromptSubmit": [...],
"Stop": [...],
"SubagentStop": [...],
"SessionStart": [...],
"SessionEnd": [...],
"PreCompact": [...],
"PostCompact": [...],
"Notification": [...],
"Elicitation": [...],
"ElicitationResult": [...]
}
}
type is "command" or "prompt"type: "command": command path exists and script is executabletype: "prompt": prompt string is non-emptytimeout is positive integer if present (default: 60s command, 30s prompt)once is boolean if present## Hooks Validation Report
### Configuration Status: VALID / INVALID
### Configured Hooks
| Type | Matcher | Script | Status |
|------|---------|--------|--------|
| Stop | * | auto-loop-stop.sh | OK |
### Script Validation
| Script | Exists | Executable | Valid Output |
|--------|--------|------------|--------------|
| auto-loop-stop.sh | OK | OK | OK |
### Issues Found
1. [Issue and fix]