record-deploymentlisted
Install: claude install-skill Fractera/Agent-Engineering-Infrastructure
# record-deployment
Skill for logging each development deployment into the Product Loop table — the
"Deployments" table the user sees in the admin UI. This is what makes Fractera
more than Vercel: the log tracks not just the deploy, but which agent did the
work, which model, how many tokens it cost, and the user's quality rating.
## The product loop
1. You take a technical decision and delegate the work to one or more coding
agents (`owner_delegate_task_to_platform` / `owner_delegate_task_to_best_platform`).
2. When they finish, you deploy.
3. If the deploy has no errors, you **record it** and hand the user the page URL.
4. The user opens the URL, reviews, and rates the result 1-3 stars in the admin
table (default 3). They can change the rating anytime later.
## When to call
Call `owner_product_loop_record_deployment` **once per deployment**, right after the change is live
and before you tell the user where to look. One delegated+deployed change = one
row.
## How to call
```
owner_product_loop_record_deployment(
platform="claude-code", # the agent that did the work (required)
page_url="http://<ip>:3000/...", # where the user reviews it (required)
model="gpt-5-mini", # model used
tokens=12345, # the `tokens` value owner_delegate_task_to_platform returned
commit_message="Add pricing card",
commit_hash="abc1234", # if you committed
branch="main",
step="23", # the step number this commit