From env-forge
Run verification functions against current DB state for a task (Phase 2). Use when user says "verify task", "check task completion", "run verifiers", or wants to validate that an agent completed an env-forge task correctly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/env-forge:verifyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Phase 2 -- not yet implemented. This command will run verification functions against the current database state for a specific task.
Phase 2 -- not yet implemented. This command will run verification functions against the current database state for a specific task.
/env-forge:verify volunteer_match 3
/env-forge:verify e_commerce_33 0
/env-forge:verify volunteer_match --all
verifiers.py from the environment directoryRun verifiers manually:
import importlib.util
spec = importlib.util.spec_from_file_location(
"verifiers",
".env-forge/environments/<name>/verifiers.py",
)
mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(mod)
result = mod.verify_task_0("db/initial.db", "db/current.db")
print(result)
Or from the command line:
cd .env-forge/environments/<name>
uv run python -c "
from verifiers import verify_task_0
print(verify_task_0('db/initial.db', 'db/current.db'))
"
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.
npx claudepluginhub fblissjr/fb-claude-skills --plugin env-forge