Semantius Logo
WORK-MGMTJune 27, 2026

Work Request Intake

Replace ad-hoc requests with structured intake forms that collect exactly what the team needs to start. Submissions are triaged and converted into work items in the right project, with the requester's details captured along the way. Standardized intake means no lost requests in chat or email, a consistent starting point for every piece of work, and a clear record of what was asked and what happened next.

Use the Work Request Intake semantic blueprint

/semantius-admin use the architect, analyst and modeler skills to update the semantius platform with the model specified in https://www.semantius.com/blueprints/work-mgmt-intake-semantic-blueprint.md

Entity summary

Name data_object Description
Form Submissions work_form_submissions Submitted instances of an intake form, carrying field values, submitter, and timestamp, and converting to a work item via routing rules.
Forms work_forms Structured intake form definitions, with field schema, validation, target project, and routing rules.
flowchart TD
  classDef master fill:#d4f4dd,stroke:#27ae60,color:#0b3d20;
  classDef platform_builtin fill:#e0e0e0,stroke:#424242,color:#1a1a1a;
  work_forms["Forms"]
  work_form_submissions["Form Submissions"]
  users["Users"]
  work_form_submissions -->|"submitted_against"| work_forms
  users -->|"created_forms"| work_forms
  users -->|"submitted_forms"| work_form_submissions
  class work_forms master;
  class work_form_submissions master;
  class users platform_builtin;