Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:March 1, 2026 at 22:16
SKILL.md
Build the project for testing
Build an individual Swift package for testing
Build the project
Format code with swiftlint and swiftformat
Lint code with swiftlint and swiftformat
Plan a new feature end-to-end — explore patterns, write user stories with acceptance criteria and TDD specs, adversarial backlog refinement, and auto-execute via parallel subagents
| name | build-package |
| description | Build an individual Swift package |
Build a single Swift package. Use this when you only need to verify a specific package compiles — use /build instead when you need to build the entire app.
Run via a subagent (Task tool, subagent_type: "general-purpose") to keep large logs out of the main context. The subagent should run the command from the package directory and report back pass/fail with any errors.
cd <package-dir> && swift build -Xswiftc -warnings-as-errors 2>&1
# Context package
cd Contexts/PopcornMovies && swift build -Xswiftc -warnings-as-errors 2>&1
# Adapter package
cd Adapters/Contexts/PopcornMoviesAdapters && swift build -Xswiftc -warnings-as-errors 2>&1
# Feature package
cd Features/MovieDetailsFeature && swift build -Xswiftc -warnings-as-errors 2>&1
# Core package
cd Core/CoreDomain && swift build -Xswiftc -warnings-as-errors 2>&1
# Platform package
cd Platform/Caching && swift build -Xswiftc -warnings-as-errors 2>&1
| Layer | Path pattern |
|---|---|
| Contexts | Contexts/<PackageName>/ |
| Context Adapters | Adapters/Contexts/<PackageName>/ |
| Platform Adapters | Adapters/Platform/<PackageName>/ |
| Features | Features/<PackageName>/ |
| Core | Core/<PackageName>/ |
| Platform | Platform/<PackageName>/ |
| AppDependencies | AppDependencies/ |