thinkwork-cli 0.12.16 → 0.12.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +517 -10403
- package/dist/commands/enterprise/templates/deploy-repo/docs/runbook.md +3 -8
- package/dist/commands/enterprise/templates/deploy-repo/terraform/main.tf +1 -184
- package/dist/drizzle/0050_brain_v0_entity_subtype.sql +2 -2
- package/dist/drizzle/0051_brain_v0_tenant_entity_pages.sql +6 -6
- package/dist/drizzle/0052_brain_v0_external_refs.sql +2 -2
- package/dist/drizzle/0053_brain_v0_unresolved_mentions_subtype.sql +2 -2
- package/dist/drizzle/0145_knowledge_graph_thread_ingest.sql +14 -14
- package/dist/drizzle/0146_knowledge_graph_source_scope.sql +1 -1
- package/dist/drizzle/0157_knowledge_graph_observations_source.sql +2 -2
- package/dist/drizzle/0158_wiki_tenant_scope.sql +1 -1
- package/dist/drizzle/0165_plugin_premium_entitlements.sql +2 -2
- package/dist/drizzle/{0166_company_brain_substrate_contract.sql → 0166_brain_substrate_contract.sql} +9 -9
- package/dist/drizzle/{0167_company_brain_artifact_manifest_runtime.sql → 0167_brain_artifact_manifest_runtime.sql} +5 -5
- package/dist/drizzle/0168_eval_skill_gate.sql +1 -1
- package/dist/drizzle/0183_okf_artifact_manifests.sql +1 -1
- package/dist/drizzle/0200_eval_results_execution_tier.sql +40 -0
- package/dist/drizzle/0201_brain_dream_runs.sql +72 -0
- package/dist/drizzle/0202_backfill_thread_participants_from_senders.sql +110 -0
- package/dist/drizzle/0203_threads_mode_override.sql +61 -0
- package/dist/drizzle/0204_thread_turns_triggering_message_id.sql +48 -0
- package/dist/drizzle/0205_routines_git_python.sql +185 -0
- package/dist/drizzle/0206_agent_loop_versions_routine_actions.sql +40 -0
- package/dist/drizzle/0207_tenant_credentials_github_repo_kind.sql +52 -0
- package/dist/drizzle/0208_knowledge_graph_neutral_identifiers.sql +253 -0
- package/dist/drizzle/0209_living_artifacts_schema.sql +109 -0
- package/dist/drizzle/0210_think137_automations_additive_schema.sql +113 -0
- package/dist/drizzle/0211_backfill_agent_loop_versions_target_spec.sql +120 -0
- package/dist/drizzle/0212_fold_webhooks_into_automations.sql +312 -0
- package/dist/drizzle/0213_agent_loop_versions_judge_evidence_nullable.sql +63 -0
- package/dist/drizzle/0214_think137_drop_judge_evidence_roi.sql +99 -0
- package/dist/drizzle/0215_agent_loop_versions_goal_worker_policy_nullable.sql +70 -0
- package/dist/drizzle/0216_drop_agent_loop_versions_goal_worker_policy.sql +81 -0
- package/dist/drizzle/0217_agents_capability_folder_dispatch.sql +12 -0
- package/dist/drizzle/0218_document_plates.sql +30 -0
- package/dist/drizzle/0219_document_section_waivers.sql +29 -0
- package/dist/drizzle/0220_artifacts_created_by_user.sql +21 -0
- package/dist/drizzle/0221_artifact_shares.sql +29 -0
- package/dist/drizzle/0221_workflow_interpreter_thin_slice.sql +71 -0
- package/dist/drizzle/0222_compliance_drainer_select_audit_events.sql +21 -0
- package/dist/drizzle/0223_document_conformance_reports.sql +38 -0
- package/dist/drizzle/0224_artifact_refresh_state.sql +11 -0
- package/dist/drizzle/0225_think216_agent_loop_convergence.sql +21 -0
- package/dist/drizzle/0226_drop_n8n_agent_step_runs.sql +6 -0
- package/dist/drizzle/0227_analyst_reader_role.sql +1055 -0
- package/dist/drizzle/0228_tenant_credentials_rds_iam_kind.sql +62 -0
- package/dist/drizzle/0229_analyst_reader_rds_iam_grant.sql +79 -0
- package/dist/drizzle/0230_analyst_rls.sql +1613 -0
- package/dist/drizzle/0231_cost_events_cache_write_enforcement_exempt.sql +11 -0
- package/dist/plugins/catalog/package.json +0 -1
- package/dist/plugins/catalog/src/__tests__/build-catalog.test.ts +0 -1
- package/dist/plugins/catalog/src/__tests__/catalog.test.ts +16 -8
- package/dist/plugins/catalog/src/__tests__/contracts.test.ts +56 -0
- package/dist/plugins/catalog/src/__tests__/plugin-package.test.ts +0 -2
- package/dist/plugins/catalog/src/__tests__/plugin-registry.test.ts +0 -5
- package/dist/plugins/catalog/src/contracts.ts +112 -0
- package/dist/plugins/catalog/src/registry/generated-first-party.ts +0 -6
- package/dist/plugins/n8n/README.md +4 -36
- package/dist/plugins/n8n/src/deployment/managed-app.ts +0 -17
- package/dist/plugins/n8n/src/manifest.ts +0 -5
- package/dist/plugins/n8n/terraform/n8n/main.tf +0 -26
- package/dist/plugins/n8n/terraform/n8n/outputs.tf +0 -5
- package/dist/plugins/n8n/terraform/n8n/variables.tf +0 -6
- package/dist/plugins/n8n/test/manifest.test.ts +0 -1
- package/dist/plugins/twenty/package.json +5 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/load-records.test.ts +232 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/mappers.test.ts +489 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/members-ensure.test.ts +199 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/provision-members-db.test.ts +43 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/schema-ensure.test.ts +230 -0
- package/dist/plugins/twenty/scripts/lib/__tests__/twenty-client.test.ts +207 -0
- package/dist/plugins/twenty/scripts/lib/lastmile-reader.ts +282 -0
- package/dist/plugins/twenty/scripts/lib/load-attachments.ts +220 -0
- package/dist/plugins/twenty/scripts/lib/load-records.ts +680 -0
- package/dist/plugins/twenty/scripts/lib/mappers.ts +559 -0
- package/dist/plugins/twenty/scripts/lib/members-ensure.ts +381 -0
- package/dist/plugins/twenty/scripts/lib/provision-members-db.ts +191 -0
- package/dist/plugins/twenty/scripts/lib/schema-ensure.ts +425 -0
- package/dist/plugins/twenty/scripts/lib/twenty-client.ts +246 -0
- package/dist/plugins/twenty/scripts/migrate-lastmile.ts +610 -0
- package/dist/plugins/twenty/scripts/provision-twenty-members.ts +214 -0
- package/dist/plugins/twenty/src/manifest.ts +99 -0
- package/dist/plugins/twenty/terraform/twenty/README.md +1 -1
- package/dist/plugins/twenty/test/manifest.test.ts +12 -2
- package/dist/terraform/examples/greenfield/main.tf +90 -380
- package/dist/terraform/examples/greenfield/terraform.tfvars.example +0 -1
- package/dist/terraform/modules/app/agentcore-pi/README.md +1 -3
- package/dist/terraform/modules/app/agentcore-pi/main.tf +29 -38
- package/dist/terraform/modules/app/agentcore-pi/variables.tf +23 -15
- package/dist/terraform/modules/app/agentcore-runtime/main.tf +3 -3
- package/dist/terraform/modules/app/customer-domain/main.tf +16 -2
- package/dist/terraform/modules/app/deployment-control-plane/main.tf +5 -0
- package/dist/terraform/modules/app/deployment-control-plane/runner.py +85 -207
- package/dist/terraform/modules/app/deployment-control-plane/test_runner_bundle.py +56 -2
- package/dist/terraform/modules/app/hindsight-memory/main.tf +52 -4
- package/dist/terraform/modules/app/lambda-api/eval-fanout.tf +7 -0
- package/dist/terraform/modules/app/lambda-api/handlers.tf +493 -89
- package/dist/terraform/modules/app/lambda-api/iam-grouped.tf +215 -96
- package/dist/terraform/modules/app/lambda-api/main.tf +24 -5
- package/dist/terraform/modules/app/lambda-api/outputs.tf +19 -11
- package/dist/terraform/modules/app/lambda-api/variables.tf +94 -67
- package/dist/terraform/modules/app/ses-email/main.tf +14 -2
- package/dist/terraform/modules/app/workflow-interpreter-stepfunctions/main.tf +493 -0
- package/dist/terraform/modules/app/workflow-interpreter-stepfunctions/outputs.tf +34 -0
- package/dist/terraform/modules/app/workflow-interpreter-stepfunctions/variables.tf +32 -0
- package/dist/terraform/modules/data/aurora-postgres/main.tf +55 -0
- package/dist/terraform/modules/data/aurora-postgres/outputs.tf +15 -0
- package/dist/terraform/modules/data/s3-buckets/main.tf +26 -0
- package/dist/terraform/modules/thinkwork/README.md +0 -1
- package/dist/terraform/modules/thinkwork/main.tf +167 -446
- package/dist/terraform/modules/thinkwork/outputs.tf +2 -142
- package/dist/terraform/modules/thinkwork/variables.tf +55 -309
- package/dist/terraform/schema.graphql +4 -0
- package/dist/workspace-defaults/files/AGENTS.md +45 -31
- package/dist/workspace-defaults/files/CONTEXT.md +48 -4
- package/dist/workspace-defaults/files/GUARDRAILS.md +18 -0
- package/dist/workspace-defaults/files/MEMORY_GUIDE.md +32 -4
- package/dist/workspace-defaults/files/SPACE.md +34 -19
- package/dist/workspace-defaults/files/TOOLS.md +30 -0
- package/dist/workspace-defaults/files/skills/document-composer/SKILL.md +154 -0
- package/dist/workspace-defaults/files/skills/document-composer/references/authoring-rules.md +101 -0
- package/package.json +1 -1
- package/dist/plugins/company-brain/README.md +0 -37
- package/dist/plugins/company-brain/package.json +0 -33
- package/dist/plugins/company-brain/runtime/cognee/Dockerfile +0 -11
- package/dist/plugins/company-brain/smoke/cognee-managed-app-smoke.mjs +0 -458
- package/dist/plugins/company-brain/smoke/cognee-memory-cutover-smoke.mjs +0 -539
- package/dist/plugins/company-brain/smoke/company-brain-context-engine-smoke.mjs +0 -312
- package/dist/plugins/company-brain/smoke/company-brain-operations-smoke.mjs +0 -449
- package/dist/plugins/company-brain/smoke/company-brain-plugin-smoke.mjs +0 -655
- package/dist/plugins/company-brain/smoke/hindsight-memory-isolation-smoke.mjs +0 -474
- package/dist/plugins/company-brain/src/api/cognee-client.ts +0 -896
- package/dist/plugins/company-brain/src/api/cognee-cluster-identity.ts +0 -49
- package/dist/plugins/company-brain/src/api/cognee-memory-scope.ts +0 -84
- package/dist/plugins/company-brain/src/api/context-engine-provider.ts +0 -888
- package/dist/plugins/company-brain/src/api/migration.ts +0 -665
- package/dist/plugins/company-brain/src/deployment/cognee-managed-app.ts +0 -396
- package/dist/plugins/company-brain/src/index.ts +0 -62
- package/dist/plugins/company-brain/src/manifest.ts +0 -112
- package/dist/plugins/company-brain/terraform/cognee/README.md +0 -263
- package/dist/plugins/company-brain/terraform/cognee/main.tf +0 -766
- package/dist/plugins/company-brain/terraform/cognee/outputs.tf +0 -144
- package/dist/plugins/company-brain/terraform/cognee/variables.tf +0 -402
- package/dist/plugins/company-brain/test/api/cognee-client.test.ts +0 -562
- package/dist/plugins/company-brain/test/api/cognee-memory-scope.test.ts +0 -74
- package/dist/plugins/company-brain/test/api/context-engine-provider.test.ts +0 -447
- package/dist/plugins/company-brain/test/api/migration.test.ts +0 -465
- package/dist/plugins/company-brain/test/manifest.test.ts +0 -95
- package/dist/plugins/company-brain/tsconfig.json +0 -8
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
export type CogneeClusterIdentity = {
|
|
2
|
-
clusterArn: string | null;
|
|
3
|
-
clusterName: string | null;
|
|
4
|
-
clusterRef: string | null;
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
type ResolveCogneeClusterIdentityInput = {
|
|
8
|
-
enabled: boolean;
|
|
9
|
-
stage: string;
|
|
10
|
-
region: string;
|
|
11
|
-
accountId: string | null;
|
|
12
|
-
clusterArnOverride?: string | null;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
export function cogneeBrainClusterName(stage: string): string {
|
|
16
|
-
return `thinkwork-${stage}-brain-cluster`;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export function ecsClusterNameFromArnOrName(value: string): string {
|
|
20
|
-
const trimmed = value.trim();
|
|
21
|
-
const slashIndex = trimmed.lastIndexOf("/");
|
|
22
|
-
return slashIndex >= 0 ? trimmed.slice(slashIndex + 1) : trimmed;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export function resolveCogneeClusterIdentity({
|
|
26
|
-
enabled,
|
|
27
|
-
stage,
|
|
28
|
-
region,
|
|
29
|
-
accountId,
|
|
30
|
-
clusterArnOverride = process.env.COGNEE_CLUSTER_ARN,
|
|
31
|
-
}: ResolveCogneeClusterIdentityInput): CogneeClusterIdentity {
|
|
32
|
-
const override = clusterArnOverride?.trim() || null;
|
|
33
|
-
const fallbackClusterName = cogneeBrainClusterName(stage);
|
|
34
|
-
const clusterName = override
|
|
35
|
-
? ecsClusterNameFromArnOrName(override)
|
|
36
|
-
: enabled
|
|
37
|
-
? fallbackClusterName
|
|
38
|
-
: null;
|
|
39
|
-
|
|
40
|
-
return {
|
|
41
|
-
clusterArn:
|
|
42
|
-
override ||
|
|
43
|
-
(enabled && accountId
|
|
44
|
-
? `arn:aws:ecs:${region}:${accountId}:cluster/${fallbackClusterName}`
|
|
45
|
-
: null),
|
|
46
|
-
clusterName,
|
|
47
|
-
clusterRef: override || (enabled ? fallbackClusterName : null),
|
|
48
|
-
};
|
|
49
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
export const COGNEE_MEMORY_SCOPE_VERSION = "v1" as const;
|
|
2
|
-
|
|
3
|
-
export type CogneeMemoryScopeKind = "user" | "space";
|
|
4
|
-
|
|
5
|
-
export type CogneeMemoryScopeRef =
|
|
6
|
-
| {
|
|
7
|
-
tenantId: string;
|
|
8
|
-
kind: "user";
|
|
9
|
-
userId: string;
|
|
10
|
-
}
|
|
11
|
-
| {
|
|
12
|
-
tenantId: string;
|
|
13
|
-
kind: "space";
|
|
14
|
-
spaceId: string;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
export interface CogneeMemoryScope {
|
|
18
|
-
version: typeof COGNEE_MEMORY_SCOPE_VERSION;
|
|
19
|
-
kind: CogneeMemoryScopeKind;
|
|
20
|
-
tenantId: string;
|
|
21
|
-
ownerId: string;
|
|
22
|
-
sourceKind: "user_memory" | "space_memory";
|
|
23
|
-
sourceRef: string;
|
|
24
|
-
datasetName: string;
|
|
25
|
-
nodeSets: string[];
|
|
26
|
-
metadata: {
|
|
27
|
-
memory_scope_version: typeof COGNEE_MEMORY_SCOPE_VERSION;
|
|
28
|
-
memory_scope_kind: CogneeMemoryScopeKind;
|
|
29
|
-
tenant_id: string;
|
|
30
|
-
owner_id: string;
|
|
31
|
-
};
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export function buildCogneeMemoryScope(
|
|
35
|
-
ref: CogneeMemoryScopeRef,
|
|
36
|
-
): CogneeMemoryScope {
|
|
37
|
-
const tenantToken = scopeToken(ref.tenantId, "tenantId");
|
|
38
|
-
const ownerId = ref.kind === "user" ? ref.userId : ref.spaceId;
|
|
39
|
-
const ownerToken = scopeToken(ownerId, `${ref.kind}Id`);
|
|
40
|
-
const sourceKind = ref.kind === "user" ? "user_memory" : "space_memory";
|
|
41
|
-
|
|
42
|
-
return {
|
|
43
|
-
version: COGNEE_MEMORY_SCOPE_VERSION,
|
|
44
|
-
kind: ref.kind,
|
|
45
|
-
tenantId: ref.tenantId,
|
|
46
|
-
ownerId,
|
|
47
|
-
sourceKind,
|
|
48
|
-
sourceRef: ownerId,
|
|
49
|
-
datasetName: [
|
|
50
|
-
"thinkwork",
|
|
51
|
-
"memory",
|
|
52
|
-
COGNEE_MEMORY_SCOPE_VERSION,
|
|
53
|
-
"tenant",
|
|
54
|
-
tenantToken,
|
|
55
|
-
ref.kind,
|
|
56
|
-
ownerToken,
|
|
57
|
-
].join(":"),
|
|
58
|
-
nodeSets: [
|
|
59
|
-
"thinkwork_memory",
|
|
60
|
-
`thinkwork_memory_${COGNEE_MEMORY_SCOPE_VERSION}`,
|
|
61
|
-
`thinkwork_${ref.kind}_memory`,
|
|
62
|
-
`tenant_${tenantToken}`,
|
|
63
|
-
`${ref.kind}_${ownerToken}`,
|
|
64
|
-
],
|
|
65
|
-
metadata: {
|
|
66
|
-
memory_scope_version: COGNEE_MEMORY_SCOPE_VERSION,
|
|
67
|
-
memory_scope_kind: ref.kind,
|
|
68
|
-
tenant_id: ref.tenantId,
|
|
69
|
-
owner_id: ownerId,
|
|
70
|
-
},
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
function scopeToken(value: string, label: string): string {
|
|
75
|
-
const token = value
|
|
76
|
-
.trim()
|
|
77
|
-
.toLowerCase()
|
|
78
|
-
.replace(/[^a-z0-9]+/g, "_")
|
|
79
|
-
.replace(/^_+|_+$/g, "");
|
|
80
|
-
if (!token) {
|
|
81
|
-
throw new Error(`Cognee memory scope requires a non-empty ${label}`);
|
|
82
|
-
}
|
|
83
|
-
return token;
|
|
84
|
-
}
|