在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用run-build
星标8
分支0
更新时间2026年6月19日 15:35
Run the EagleEye build and tests
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run the EagleEye build and tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Verify architectural consistency and dependency rules in EagleEye
Validate EagleEye documentation matches actual implementation
Generate tests following project conventions
Determine minimum requirements to consume the EagleEye library
Generate release notes and prepare the next release for EagleEye
Review an EagleEye pull request checking architecture, tests, docs, and completeness
| name | run-build |
| description | Run the EagleEye build and tests |
| trigger | when the user asks to build, compile, run tests, or validate the project |
Always run from the project root:
# Install dependencies
dart pub get
# Static analysis
dart analyze
# Run tests
dart test
# Run the CLI locally
dart run eagle_eye:main
# Publish to pub.dev
dart pub publish
Per AGENTS.md rules: run dart analyze and dart test after every task before marking it complete. Never mark a task complete without a passing build.
| Error | Likely Cause | Fix |
|---|---|---|
Undefined name | Missing import | Add the correct package: import |
The method doesn't override an inherited method | Wrong method signature | Check the base class/interface |
Target of URI doesn't exist | Wrong file path in import | Fix the import path |
A value of type X can't be assigned to Y | Type mismatch | Check the expected type |
| Test failures | Logic error or outdated expectation | Debug and fix the implementation |
The project has three CI workflows (see .github/workflows/):
pr.yml — runs dart test and dart analyze on every PR to maindocumentation.yml — deploys MkDocs sitepublish.yml — publishes to pub.dev