on-croft/croft
Build, deploy, and maintain apps on a Croft workspace through the Croft MCP, plus skills that teach agents the Croft golden path, connectors, and shared data.
Build, deploy, and maintain web apps on a Croft workspace through the Croft MCP. Use whenever the user asks to create, build, change, ship, deploy, or fix an app on Croft (oncroft.net). Covers the required create_app → write_files → deploy → poll-status workflow and Croft's app conventions (Node/Hono/SQLite, $PORT, /healthz, no auth code, secrets, file uploads, public paths, scheduled tasks).
Call external APIs (Stripe, Azure DevOps, a CRM, email, payments, anything) from a Croft app through Croft connectors — never by installing a vendor SDK or holding an API key. Use whenever a Croft app must talk to a third-party service. Covers list_connectors/describe_connector, grant_connector, the freeform POST /call/<connector> data broker, custom request headers and raw bodies, propose_connector, and public-app approval.
Share one Croft app's SQLite database with other apps in the same workspace, or read and write another app's shared data, through the Croft data broker. Use when two Croft apps should reuse the same data instead of duplicating it — e.g. one shared contacts list behind both a CRM and an invoicing app. Covers set_database_sharing, the POST /q/<app> query broker, discovering what's shared, and public-app access rules.