- Start with the wizard to create a connected estimate from plANARCHY data.
+ Start with the wizard to create a connected estimate from CapaKraken data.
- Configure outbound webhooks to notify external services about events in Planarchy.
+ Configure outbound webhooks to notify external services about events in CapaKraken.
{children}
diff --git a/apps/web/src/components/layout/InstallPrompt.tsx b/apps/web/src/components/layout/InstallPrompt.tsx
index 251124d..af95c86 100644
--- a/apps/web/src/components/layout/InstallPrompt.tsx
+++ b/apps/web/src/components/layout/InstallPrompt.tsx
@@ -74,7 +74,7 @@ export function InstallPrompt() {
- Install Planarchy
+ Install CapaKraken
Add to home screen for quick access
diff --git a/apps/web/src/components/reports/AllocationReport.tsx b/apps/web/src/components/reports/AllocationReport.tsx
index de74394..489e6c5 100644
--- a/apps/web/src/components/reports/AllocationReport.tsx
+++ b/apps/web/src/components/reports/AllocationReport.tsx
@@ -63,7 +63,7 @@ export function AllocationReport({ title, generatedAt, rows }: AllocationReportP
))}
- plANARCHY · Confidential · {rows.length} allocations
+ CapaKraken · Confidential · {rows.length} allocations
);
diff --git a/apps/web/src/components/resources/SkillMatrixUpload.tsx b/apps/web/src/components/resources/SkillMatrixUpload.tsx
index 371018d..bc85412 100644
--- a/apps/web/src/components/resources/SkillMatrixUpload.tsx
+++ b/apps/web/src/components/resources/SkillMatrixUpload.tsx
@@ -169,7 +169,7 @@ export function SkillMatrixUpload({ resourceId, isOwner, onClose, onSuccess }: P
{preview.matchedRoleName && (
- Area of expertise matched to plANARCHY role:{" "}
+ Area of expertise matched to CapaKraken role:{" "}
{preview.matchedRoleName}
)}
diff --git a/apps/web/src/components/staffing/StaffingPanel.tsx b/apps/web/src/components/staffing/StaffingPanel.tsx
index a20e12b..1598c69 100644
--- a/apps/web/src/components/staffing/StaffingPanel.tsx
+++ b/apps/web/src/components/staffing/StaffingPanel.tsx
@@ -75,7 +75,7 @@ export function StaffingPanel() {
How scoring works
- plANARCHY blends skill fit, free capacity, cost, and current utilization. Add the must-have skills first, then narrow the date window to get cleaner results.
+ CapaKraken blends skill fit, free capacity, cost, and current utilization. Add the must-have skills first, then narrow the date window to get cleaner results.
diff --git a/packages/api/src/router/assistant-tools.ts b/packages/api/src/router/assistant-tools.ts
index db43d40..8c22452 100644
--- a/packages/api/src/router/assistant-tools.ts
+++ b/packages/api/src/router/assistant-tools.ts
@@ -276,7 +276,7 @@ export const TOOL_DEFINITIONS: ToolDef[] = [
type: "function",
function: {
name: "navigate_to_page",
- description: "Navigate the user to a specific page in Planarchy, optionally with filters. Use this when the user wants to see data on a specific page (e.g. 'show me on the timeline', 'open the resources page').",
+ description: "Navigate the user to a specific page in CapaKraken, optionally with filters. Use this when the user wants to see data on a specific page (e.g. 'show me on the timeline', 'open the resources page').",
parameters: {
type: "object",
properties: {
diff --git a/packages/api/src/router/assistant.ts b/packages/api/src/router/assistant.ts
index 085a1cc..7c9b855 100644
--- a/packages/api/src/router/assistant.ts
+++ b/packages/api/src/router/assistant.ts
@@ -12,7 +12,7 @@ import { TOOL_DEFINITIONS, executeTool, type ToolContext, type ToolAction } from
const MAX_TOOL_ITERATIONS = 8;
-const SYSTEM_PROMPT = `Du bist der plANARCHY-Assistent — ein hilfreicher AI-Assistent für Ressourcenplanung und Projektmanagement in einer 3D-Produktionsumgebung.
+const SYSTEM_PROMPT = `Du bist der CapaKraken-Assistent — ein hilfreicher AI-Assistent für Ressourcenplanung und Projektmanagement in einer 3D-Produktionsumgebung.
Deine Fähigkeiten:
- Fragen über Ressourcen, Projekte, Allokationen, Budget, Urlaub, Estimates, Org-Struktur, Rollen, Blueprints, Rate Cards beantworten
diff --git a/packages/api/src/router/vacation.ts b/packages/api/src/router/vacation.ts
index e3d345f..f06a9d3 100644
--- a/packages/api/src/router/vacation.ts
+++ b/packages/api/src/router/vacation.ts
@@ -71,7 +71,7 @@ async function notifyVacationStatus(
if (resource.user.email) {
void sendEmail({
to: resource.user.email,
- subject: `Planarchy — ${title}`,
+ subject: `CapaKraken — ${title}`,
text: body,
});
}
diff --git a/packages/api/src/router/webhook.ts b/packages/api/src/router/webhook.ts
index 15f2e89..571e44e 100644
--- a/packages/api/src/router/webhook.ts
+++ b/packages/api/src/router/webhook.ts
@@ -144,7 +144,7 @@ export const webhookRouter = createTRPCRouter({
payload: {
webhookId: wh.id,
webhookName: wh.name,
- message: "This is a test payload from Planarchy.",
+ message: "This is a test payload from CapaKraken.",
},
};