Skip to main content
POST
/
manifest
/
feature
update a single feature's status
curl --request POST \
  --url http://localhost:3917/manifest/feature \
  --header 'Content-Type: application/json' \
  --data '
{
  "assertions": [
    "hero-exists"
  ],
  "name": "combat",
  "status": "complete"
}
'
{
  "message": "Feature 'combat' updated",
  "ok": true
}

Body

application/json

The name of an existing manifest feature, an optional status (planned/in_progress/complete/verified), and an optional assertions array of assertion names to append.

The body is of type any.

Response

200 - application/json

Feature status/assertions updated in the stored manifest. Returns ok:false with an error when the feature or manifest is absent.