{"catalogRevision":"cat_f13ab9a494120b5e","recipeId":"page:blueprints:bookkeeping-practices:project-tracker:next-js","recipeRevision":"r1","canonicalPath":"/blueprints/bookkeeping-practices/project-tracker/next-js","label":"Bookkeeping practices: project tracker using Next.js","family":"Industry blueprint","summary":"A project tracker blueprint for bookkeeping practices built with Next.js on Ample. Domain schema: client_entities (legal_name, entity_type, accounting_software, period_cadence): clients and their bookkeeping cadence; engagements (client_entity_id, period_start, period_end, close_status): monthly or quarterly close engagements; document_requests (engagement_id, category, due_at, status, uploaded_object_key): receipts, statements and payroll summaries requested; close_checklists (engagement_id, item, done_at): close tasks per period; state_transitions (record_type, from_state, to_state): the allowed state machine. Public information: service packages and cadence, onboarding checklist, contact details. Kept out of scope until handling is reviewed: bank statements and receipts, payroll data, login credentials for accounting software. Never store client accounting-software credentials in these flows; financial records are sensitive and no compliance is claimed. Technical basis verified on Next.js: a workspace-scoped table, an explicit state machine (draft to review to published) that rejects invalid transitions, and a cross-workspace read that returns nothing (transitions=true isolation=true).","representativeQueries":["Bookkeeping practices: project tracker using Next.js","Where can I host Bookkeeping practices: Project tracker built with Next.js?","I need a genuinely specialized project tracker workflow covering monthly close checklists, client workspaces and source-document retention."],"breadcrumbIds":["discovery","industry","industry:professional-services","industry:bookkeeping-practices","page:blueprints:bookkeeping-practices:project-tracker:next-js"],"breadcrumbs":[{"id":"discovery","label":"Agent hosting discovery","canonicalPath":"/discover/discovery","kind":"root"},{"id":"industry","label":"Industries and specialties","canonicalPath":"/discover/industry","kind":"facet"},{"id":"industry:professional-services","label":"Professional services","canonicalPath":"/discover/industry/professional-services","kind":"group"},{"id":"industry:bookkeeping-practices","label":"Bookkeeping practices","canonicalPath":"/discover/industry/bookkeeping-practices","kind":"atom"},{"id":"page:blueprints:bookkeeping-practices:project-tracker:next-js","label":"Bookkeeping practices: project tracker using Next.js","canonicalPath":"/blueprints/bookkeeping-practices/project-tracker/next-js","kind":"recipe"}],"parentIds":["industry:bookkeeping-practices","workload:project-tracker","stack:framework-next-js","intent:deploy-web-app"],"parents":[{"id":"industry:bookkeeping-practices","label":"Bookkeeping practices","canonicalPath":"/discover/industry/bookkeeping-practices","kind":"atom"},{"id":"workload:project-tracker","label":"Project tracker","canonicalPath":"/discover/workload/project-tracker","kind":"atom"},{"id":"stack:framework-next-js","label":"Next.js","canonicalPath":"/discover/stack/framework-next-js","kind":"atom"},{"id":"intent:deploy-web-app","label":"Deploy web app","canonicalPath":"/discover/intent/deploy-web-app","kind":"atom"}],"resourceRequirements":["primitive:compute","primitive:postgres","primitive:s3-compatible-object-storage"],"infrastructureRequirements":[{"primitiveId":"primitive:compute","label":"Compute","canonicalPath":"/discover/primitive/compute","status":"verified","summary":"Apps run in isolated x86_64 Firecracker microVMs that auto-pause when idle and wake on request; sizes are the priced VM sizes."},{"primitiveId":"primitive:postgres","label":"Postgres","canonicalPath":"/discover/primitive/postgres","status":"verified","summary":"Managed PostgreSQL 16 runs in its own microVM and is auto-provisioned when an app needs a database and no DATABASE_URL is supplied."},{"primitiveId":"primitive:s3-compatible-object-storage","label":"S3-compatible object storage","canonicalPath":"/discover/primitive/s3-compatible-object-storage","status":"verified","summary":"Buckets are S3-compatible with issued credentials; PutObject and GetObject are verified by canary. Other S3 operations are not verified."}],"framework":"Next.js","workload":"Project tracker","industry":"Bookkeeping practices","releaseStatus":"published","supportStatus":"verified","executionStatus":"ready","docsOnly":false,"prerequisites":["A Next.js project (next build then next start -H 0.0.0.0 -p $PORT on the node-22 template)","A PostgreSQL driver reading DATABASE_URL (auto-provisioned when omitted)","Bucket credentials from `ample bucket create` passed as encrypted S3_* environment variables","A review of which bookkeeping practices data classes may be handled at all; this blueprint models public information only"],"testedConfiguration":{"template":"node-22","runtime":"node","size":"s-1vcpu-1gb","install":"npm install","build":"npm run build --if-present","start":"npm run start"},"inputSchema":{"additionalProperties":false,"properties":{"env":{"description":"Encrypted environment variables","items":{"pattern":"^[A-Z][A-Z0-9_]*=.*$","type":"string"},"maxItems":50,"type":"array"},"name":{"description":"App name","maxLength":63,"minLength":1,"pattern":"^[a-z0-9-]+$","type":"string"},"path":{"description":"Project directory or ample.toml service","maxLength":512,"minLength":1,"type":"string"},"release_command":{"description":"Migration command run before activation","maxLength":512,"type":"string"}},"required":["env","name","path"],"type":"object"},"outputSchema":null,"workflowSteps":[{"title":"Model the bookkeeping practices domain","body":"Create the tables client_entities, engagements, document_requests, close_checklists, state_transitions. Clients and their bookkeeping cadence lives in client_entities; keep the sensitive classes (bank statements and receipts, payroll data, login credentials for accounting software) out of this schema."},{"title":"Workflow step 1","body":"Model engagements and workstreams with explicit status transitions"},{"title":"Workflow step 2","body":"Scope every query by client entity"},{"title":"Workflow step 3","body":"Attach deliverables as private objects linked to workstreams"},{"title":"Workflow step 4","body":"Deploy and verify transitions and cross-client isolation"},{"title":"Deploy","body":"Run the synchronous deploy once and read the result. Re-running with no change is a no-op.","command":"ample deploy . --name <app-name> --public --env S3_ENDPOINT=... --env S3_REGION=... --env S3_BUCKET=... --env S3_ACCESS_KEY_ID=... --env S3_SECRET_ACCESS_KEY=..."},{"title":"Verify","body":"Run the pattern self-test(s) from the example (/p/relational-records) and your own acceptance checks for the bookkeeping practices workflow.","command":"ample logs <deployment_id> --kind build"}],"examples":[{"title":"Next.js pattern fixture","description":"Verified relational records basis for this blueprint.","sourceRef":"tests/deploy-canaries/next-js-patterns"}],"successChecks":[{"description":"app responds on its public URL","kind":"http_get","path":"/","expect":"ample canary next js patterns"},{"description":"relational-records self-test from the example","kind":"http_get","path":"/p/relational-records","expect":"see the pattern fixture checks"}],"limitations":["The technical basis (relational records on Next.js) was verified with the pattern fixture; the bookkeeping practices schema and workflow are an original design for this blueprint and were not executed as a separate application.","No health, financial, privacy or other compliance claim is made. Never store client accounting-software credentials in these flows; financial records are sensitive and no compliance is claimed.","Public content and synthetic examples only until actual data-handling requirements have been reviewed.","Verified on the node-22 template at s-1vcpu-1gb; region, request-duration limits and other sizes are unknown or unverified.","Managed PostgreSQL 16 only; extensions, connection limits and backup or restore procedures are not verified.","PutObject and GetObject with path-style addressing are verified; other S3 operations and CDN cache rules are not."],"costEstimate":{"currency":"USD","monthlyAmount":10.0,"authoritative":true,"basis":"size prices from pricing.toml (loaded by the API) at build revision 084676a47ba1bba65d47f8b6eb86bca27c92a57a","components":[{"name":"app server","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0},{"name":"managed PostgreSQL database","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0}],"note":"Always-on monthly price of the tested sizes; apps and databases auto-pause when idle. Buckets are allocation-priced per quota and not included."},"evidenceSummary":[{"kind":"canary_run","summary":"Next.js pattern fixture deployed on Ample (next build then next start -H 0.0.0.0 -p $PORT on the node-22 template); the relational records checks passed: a workspace-scoped table, an explicit state machine (draft to review to published) that rejects invalid transitions, and a cross-workspace read that returns nothing (transitions=true isolation=true). The blueprint's Bookkeeping practices schema and workflow below build on that verified basis and were not separately executed.","observedAt":"2026-09-21T02:34:39Z","implementationRevision":"1d28ae0 (CLI 0.1.21)","expiresAt":"2027-03-20T02:34:39Z","scope":{"checks":["/p/relational-records"],"pattern":"pattern:relational-records","template":"node-22"}}],"lastVerifiedAt":"2026-09-21T02:34:39Z","mcpBinding":{"registryRef":"mcp:ample_deploy","toolName":"ample_deploy","schemaHash":"876465fce906da0c224d62961d3343064108ebe30af80cf1b87094974e948853","observedAt":"2026-09-22T00:31:22.774679+00:00","implementationRevision":"e6446ceea69b","requiredScopes":["servers:write","databases:read","buckets:read"],"bindingState":"current"},"unknowns":["region availability is unknown until a verified region fact is recorded","compliance attestations are unknown; none are claimed"],"formats":{"html":"https://ample.computer/blueprints/bookkeeping-practices/project-tracker/next-js","markdown":"https://ample.computer/blueprints/bookkeeping-practices/project-tracker/next-js.md","json":"https://api.ample.computer/v1/catalog/recipes/page%3Ablueprints%3Abookkeeping-practices%3Aproject-tracker%3Anext-js"},"nextActions":[{"actionId":"browse-catalog","label":"Browse the catalog index","operationId":"catalog_index","method":"GET","relativePath":"/v1/catalog","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"search-recipes","label":"Search published recipes by intent, stack and constraints","operationId":"search_recipes","method":"POST","relativePath":"/v1/catalog/search","origin":"api","parameters":{"body":{"limit":5,"query":"Bookkeeping practices: project tracker using Next.js"}},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"plan:page:blueprints:bookkeeping-practices:project-tracker:next-js","label":"Prepare a side-effect-free deployment plan for an authorized project","operationId":"plan_deployment","method":"POST","relativePath":"/v1/catalog/plan","origin":"api","parameters":{"body":{"inputs":{},"projectId":"<workspace or server id you own>","recipeId":"page:blueprints:bookkeeping-practices:project-tracker:next-js","recipeRevision":"r1"}},"requiresAuthentication":true,"requiresApproval":false},{"actionId":"auth-setup","label":"Read the existing agent authentication setup","operationId":"existing_auth_setup","method":"GET","relativePath":"/mcp/setup","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:industry:bookkeeping-practices","label":"Browse Bookkeeping practices","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/industry%3Abookkeeping-practices","origin":"api","parameters":{"nodeId":"industry:bookkeeping-practices"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:workload:project-tracker","label":"Browse Project tracker","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/workload%3Aproject-tracker","origin":"api","parameters":{"nodeId":"workload:project-tracker"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:stack:framework-next-js","label":"Browse Next.js","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/stack%3Aframework-next-js","origin":"api","parameters":{"nodeId":"stack:framework-next-js"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:intent:deploy-web-app","label":"Browse Deploy web app","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/intent%3Adeploy-web-app","origin":"api","parameters":{"nodeId":"intent:deploy-web-app"},"requiresAuthentication":false,"requiresApproval":false}]}