Every action below is available as a verb in Cerebral OS — callable from a Cerebral, a Map, or the Runtime API. All executions are governed, audited, and dry-run safe.
Create Customer
php_point_of_sale:create_customer
Create a new customer in the POS system.
Write
Medium risk
Create Product
php_point_of_sale:create_product
Create a new product in the POS system.
Write
Medium risk
Create Sale
php_point_of_sale:create_sale
Create a new sale transaction with line items and payment.
Write
Medium risk
Get Customer
php_point_of_sale:get_customer
Fetch a single customer by ID with contact details and purchase history summary.
Read
Low risk
Get Daily Report
php_point_of_sale:get_daily_report
Get daily sales report with totals and breakdowns.
Read
Low risk
Get Employee
php_point_of_sale:get_employee
Fetch a single employee by ID with role and contact information.
Read
Low risk
Get Product
php_point_of_sale:get_product
Fetch a single product by ID with pricing and inventory information.
Read
Low risk
Get Sale
php_point_of_sale:get_sale
Fetch a single sale by ID with line items and payment information.
Read
Low risk
List Customers
php_point_of_sale:list_customers
List customers with optional search and filtering.
Read
Low risk
List Employees
php_point_of_sale:list_employees
List employees with optional search and filtering.
Read
Low risk
List Products
php_point_of_sale:list_products
List products with optional search and filtering.
Read
Low risk
List Sales
php_point_of_sale:list_sales
List sales with optional date range and filtering.
Read
Low risk
Process Refund
php_point_of_sale:process_refund
Process a refund for an existing sale.
Write
Medium risk
Update Customer
php_point_of_sale:update_customer
Update an existing customer's information.
Write
Medium risk
Update Inventory
php_point_of_sale:update_inventory
Update product inventory quantity.
Write
Medium risk