forked from farhoodlabs/paperclip
d6d7a7cea6
## Thinking Path > - Paperclip is the control plane for autonomous AI companies. > - Routines are the scheduled/recurring work surface that keeps a company operating without manual kicks. > - Operators need routine edits to be auditable and recoverable, especially when routines control assignments, prompts, triggers, and webhook secrets. > - Documents already have revision-style safety, but routines did not have equivalent history or restore semantics. > - This pull request adds append-only routine revisions across the database, shared contracts, server routes, and board UI. > - The benefit is safer routine iteration: users can inspect history, compare changes, restore older definitions, and avoid overwriting newer edits. ## What Changed - Added `routine_revisions` storage, latest revision pointers on routines, shared types, validators, and API docs for routine revision history. - Added server service/route support for listing routine revisions, conflict-aware routine saves, and append-only restore operations. - Added a History tab on routine detail with revision preview, structured change summaries, description line diffs, dirty-edit blocking, restore confirmation, and restored webhook secret surfacing. - Extracted the line diff helper from `DocumentDiffModal` into `ui/src/lib/line-diff.ts` for reuse. - Rebased the branch onto current `public-gh/master` and renumbered the routine revision migration to `0077_unusual_karnak` after upstream `0076_useful_elektra`. - Made the `0077` routine revision migration idempotent so installs that already applied the branch-local `0076_unusual_karnak` can safely advance. - Updated the plugin SDK test harness routine fixture with the new revision fields required by the shared `Routine` contract. ## Verification - `pnpm --filter @paperclipai/db run check:migrations` passed. - `pnpm exec vitest run --project @paperclipai/shared packages/shared/src/validators/routine.test.ts` passed. - `pnpm exec vitest run --project @paperclipai/ui ui/src/lib/line-diff.test.ts ui/src/components/RoutineHistoryTab.test.tsx ui/src/lib/workspace-routines.test.ts ui/src/pages/Routines.test.tsx` passed. - `pnpm exec vitest run --project @paperclipai/server server/src/__tests__/routines-service.test.ts --pool=forks --poolOptions.forks.isolate=true` passed. - `pnpm exec vitest run --project @paperclipai/server server/src/__tests__/routines-routes.test.ts --pool=forks --poolOptions.forks.isolate=true` passed. - `pnpm --filter @paperclipai/plugin-sdk typecheck` passed after updating the SDK test harness fixture. - `pnpm --filter @paperclipai/plugin-sdk build` passed; this refreshed local generated SDK output needed by plugin example typechecks. - `pnpm -r typecheck` passed. ## Risks - Medium migration risk: this adds routine revision storage and backfills existing routines. The migration is ordered after upstream `0076` and uses `IF NOT EXISTS` / duplicate-object guards to tolerate earlier branch-local migration application. - Restore behavior intentionally appends a new revision instead of mutating history; callers expecting an in-place rollback need to follow the new latest revision pointer. - Restoring webhook triggers recreates webhook secret material, so users must copy newly surfaced secrets after restore. - Conflict-aware saves now reject stale routine edits when the client sends an older `baseRevisionId`. > For core feature work, check [`ROADMAP.md`](ROADMAP.md) first and discuss it in `#dev` before opening the PR. Feature PRs that overlap with planned core work may need to be redirected — check the roadmap first. See `CONTRIBUTING.md`. ## Model Used - OpenAI Codex, GPT-5-based coding agent, with shell/tool use in a local git worktree. Exact context-window size is not exposed in this runtime. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [x] If this change affects the UI, I have included before/after screenshots - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge Screenshots: not attached in this draft PR; the new UI flow is covered by component tests listed above. --------- Co-authored-by: Paperclip <noreply@paperclip.ing>
75 lines
4.2 KiB
TypeScript
75 lines
4.2 KiB
TypeScript
export { companies } from "./companies.js";
|
|
export { companyLogos } from "./company_logos.js";
|
|
export { authUsers, authSessions, authAccounts, authVerifications } from "./auth.js";
|
|
export { instanceSettings } from "./instance_settings.js";
|
|
export { instanceUserRoles } from "./instance_user_roles.js";
|
|
export { userSidebarPreferences } from "./user_sidebar_preferences.js";
|
|
export { agents } from "./agents.js";
|
|
export { boardApiKeys } from "./board_api_keys.js";
|
|
export { cliAuthChallenges } from "./cli_auth_challenges.js";
|
|
export { companyMemberships } from "./company_memberships.js";
|
|
export { companyUserSidebarPreferences } from "./company_user_sidebar_preferences.js";
|
|
export { principalPermissionGrants } from "./principal_permission_grants.js";
|
|
export { invites } from "./invites.js";
|
|
export { joinRequests } from "./join_requests.js";
|
|
export { budgetPolicies } from "./budget_policies.js";
|
|
export { budgetIncidents } from "./budget_incidents.js";
|
|
export { agentConfigRevisions } from "./agent_config_revisions.js";
|
|
export { agentApiKeys } from "./agent_api_keys.js";
|
|
export { agentRuntimeState } from "./agent_runtime_state.js";
|
|
export { agentTaskSessions } from "./agent_task_sessions.js";
|
|
export { agentWakeupRequests } from "./agent_wakeup_requests.js";
|
|
export { projects } from "./projects.js";
|
|
export { projectWorkspaces } from "./project_workspaces.js";
|
|
export { executionWorkspaces } from "./execution_workspaces.js";
|
|
export { environments } from "./environments.js";
|
|
export { environmentLeases } from "./environment_leases.js";
|
|
export { workspaceOperations } from "./workspace_operations.js";
|
|
export { workspaceRuntimeServices } from "./workspace_runtime_services.js";
|
|
export { projectGoals } from "./project_goals.js";
|
|
export { goals } from "./goals.js";
|
|
export { issues } from "./issues.js";
|
|
export { issueReferenceMentions } from "./issue_reference_mentions.js";
|
|
export { issueRelations } from "./issue_relations.js";
|
|
export { routines, routineRevisions, routineTriggers, routineRuns } from "./routines.js";
|
|
export { issueWorkProducts } from "./issue_work_products.js";
|
|
export { labels } from "./labels.js";
|
|
export { issueLabels } from "./issue_labels.js";
|
|
export { issueApprovals } from "./issue_approvals.js";
|
|
export { issueComments } from "./issue_comments.js";
|
|
export { issueThreadInteractions } from "./issue_thread_interactions.js";
|
|
export { issueTreeHolds } from "./issue_tree_holds.js";
|
|
export { issueTreeHoldMembers } from "./issue_tree_hold_members.js";
|
|
export { issueExecutionDecisions } from "./issue_execution_decisions.js";
|
|
export { issueInboxArchives } from "./issue_inbox_archives.js";
|
|
export { inboxDismissals } from "./inbox_dismissals.js";
|
|
export { feedbackVotes } from "./feedback_votes.js";
|
|
export { feedbackExports } from "./feedback_exports.js";
|
|
export { issueReadStates } from "./issue_read_states.js";
|
|
export { assets } from "./assets.js";
|
|
export { issueAttachments } from "./issue_attachments.js";
|
|
export { documents } from "./documents.js";
|
|
export { documentRevisions } from "./document_revisions.js";
|
|
export { issueDocuments } from "./issue_documents.js";
|
|
export { heartbeatRuns } from "./heartbeat_runs.js";
|
|
export { heartbeatRunEvents } from "./heartbeat_run_events.js";
|
|
export { heartbeatRunWatchdogDecisions } from "./heartbeat_run_watchdog_decisions.js";
|
|
export { costEvents } from "./cost_events.js";
|
|
export { financeEvents } from "./finance_events.js";
|
|
export { approvals } from "./approvals.js";
|
|
export { approvalComments } from "./approval_comments.js";
|
|
export { activityLog } from "./activity_log.js";
|
|
export { companySecrets } from "./company_secrets.js";
|
|
export { companySecretVersions } from "./company_secret_versions.js";
|
|
export { companySkills } from "./company_skills.js";
|
|
export { plugins } from "./plugins.js";
|
|
export { pluginConfig } from "./plugin_config.js";
|
|
export { pluginCompanySettings } from "./plugin_company_settings.js";
|
|
export { pluginManagedResources } from "./plugin_managed_resources.js";
|
|
export { pluginState } from "./plugin_state.js";
|
|
export { pluginEntities } from "./plugin_entities.js";
|
|
export { pluginDatabaseNamespaces, pluginMigrations } from "./plugin_database.js";
|
|
export { pluginJobs, pluginJobRuns } from "./plugin_jobs.js";
|
|
export { pluginWebhookDeliveries } from "./plugin_webhooks.js";
|
|
export { pluginLogs } from "./plugin_logs.js";
|