用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Arsapol/agent-npa-guy --skill ralph命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Cross-NPA comparison engine for Thai distressed properties. Finds comparable NPA properties by GPS proximity, computes area benchmarks (median/p25/p75), and returns type-specific comparison results (condo, land, house, commercial). Condos additionally use external market data from market_adapter when available. Non-condo is cross-NPA only — no external market data exists yet.
NPA property alert system. Scans ALL provider databases (LED, SAM, BAM, JAM, KTB, KBANK) for newly added properties, price drops, best deals, properties near BTS/MRT, and upcoming auctions. Can generate daily reports and run on schedule.
Run structured analysis (financial, property, data) using the hybrid ralph pattern. Decomposes research questions into parallel investigation tracks with verification.
基于 SOC 职业分类
正在显示 SKILL.md
| name | ralph |
| description | Run the autonomous ralph loop for mechanical stories. Iterates with fresh context until all tasks pass. |
| disable-model-invocation | true |
Run the autonomous iteration loop for mechanical (machine-verifiable) stories.
# Run with defaults (10 iterations)
./scripts/ralph.sh
# Run with custom max iterations
./scripts/ralph.sh 20
# Run in an isolated worktree
./scripts/ralph.sh 15 --worktree
# Run on a specific branch
./scripts/ralph.sh 10 --branch feature/my-feature --worktree
Before running, ensure:
prd.json exists in the project root (use /prd to generate)shared-contracts.md exists with defined contracts (use /build-feature to generate)jq is installed (brew install jq)Each iteration:
prd.json to find the highest-priority incomplete storyclaude -p (clean context)progress.txt for the next iteration| Flag | Description |
|---|---|
--worktree | Run in an isolated git worktree (recommended for parallel execution) |
--branch <name> | Create/use a specific branch for the work |
For parallel execution on independent modules:
# Terminal 1: Frontend stories
./scripts/ralph.sh 10 --branch feature/frontend --worktree &
# Terminal 2: Backend stories
./scripts/ralph.sh 10 --branch feature/backend --worktree &
# Wait for both
wait
IMPORTANT: Only parallelize loops that work on completely different files. Never run two loops on overlapping files.