d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
240 lines
6.7 KiB
TypeScript
240 lines
6.7 KiB
TypeScript
import { AuditAction, AuditResourceType, recordAudit } from '@sim/audit'
|
|
import { createLogger } from '@sim/logger'
|
|
import { getErrorMessage, toError } from '@sim/utils/errors'
|
|
import type { ExecutionContext, ToolCallResult } from '@/lib/copilot/request/types'
|
|
import { captureServerEvent } from '@/lib/posthog/server'
|
|
import { deleteSkill, listSkills, upsertSkills } from '@/lib/workflows/skills/operations'
|
|
|
|
const logger = createLogger('CopilotToolExecutor')
|
|
|
|
type ManageSkillOperation = 'add' | 'edit' | 'delete' | 'list'
|
|
|
|
interface ManageSkillParams {
|
|
operation?: string
|
|
skillId?: string
|
|
name?: string
|
|
description?: string
|
|
content?: string
|
|
}
|
|
|
|
export async function executeManageSkill(
|
|
rawParams: Record<string, unknown>,
|
|
context: ExecutionContext
|
|
): Promise<ToolCallResult> {
|
|
const params = rawParams as ManageSkillParams
|
|
const operation = String(params.operation || '').toLowerCase() as ManageSkillOperation
|
|
const workspaceId = context.workspaceId
|
|
|
|
if (!operation) {
|
|
return { success: false, error: "Missing required 'operation' argument" }
|
|
}
|
|
|
|
if (!workspaceId) {
|
|
return { success: false, error: 'workspaceId is required' }
|
|
}
|
|
|
|
const writeOps: string[] = ['add', 'edit', 'delete']
|
|
if (
|
|
writeOps.includes(operation) &&
|
|
context.userPermission &&
|
|
context.userPermission !== 'write' &&
|
|
context.userPermission !== 'admin'
|
|
) {
|
|
return {
|
|
success: false,
|
|
error: `Permission denied: '${operation}' on manage_skill requires write access. You have '${context.userPermission}' permission.`,
|
|
}
|
|
}
|
|
|
|
try {
|
|
if (operation === 'list') {
|
|
const skills = await listSkills({ workspaceId })
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
success: true,
|
|
operation,
|
|
skills: skills.map((s) => ({
|
|
id: s.id,
|
|
name: s.name,
|
|
description: s.description,
|
|
createdAt: s.createdAt,
|
|
})),
|
|
count: skills.length,
|
|
},
|
|
}
|
|
}
|
|
|
|
if (operation === 'add') {
|
|
if (!params.name || !params.description || !params.content) {
|
|
return {
|
|
success: false,
|
|
error: "'name', 'description', and 'content' are required for 'add'",
|
|
}
|
|
}
|
|
|
|
const { skills: resultSkills } = await upsertSkills({
|
|
skills: [{ name: params.name, description: params.description, content: params.content }],
|
|
workspaceId,
|
|
userId: context.userId,
|
|
})
|
|
const created = resultSkills.find((s) => s.name === params.name)
|
|
|
|
recordAudit({
|
|
workspaceId,
|
|
actorId: context.userId,
|
|
action: AuditAction.SKILL_CREATED,
|
|
resourceType: AuditResourceType.SKILL,
|
|
resourceId: created?.id,
|
|
resourceName: params.name,
|
|
description: `Created skill "${params.name}"`,
|
|
metadata: { source: 'tool_input' },
|
|
})
|
|
if (created?.id) {
|
|
captureServerEvent(
|
|
context.userId,
|
|
'skill_created',
|
|
{
|
|
skill_id: created.id,
|
|
skill_name: params.name,
|
|
workspace_id: workspaceId,
|
|
source: 'tool_input',
|
|
},
|
|
{ groups: { workspace: workspaceId } }
|
|
)
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
success: true,
|
|
operation,
|
|
skillId: created?.id,
|
|
name: params.name,
|
|
message: `Created skill "${params.name}"`,
|
|
},
|
|
}
|
|
}
|
|
|
|
if (operation === 'edit') {
|
|
if (!params.skillId) {
|
|
return { success: false, error: "'skillId' is required for 'edit'" }
|
|
}
|
|
if (!params.name && !params.description && !params.content) {
|
|
return {
|
|
success: false,
|
|
error: "At least one of 'name', 'description', or 'content' is required for 'edit'",
|
|
}
|
|
}
|
|
|
|
const existing = await listSkills({ workspaceId })
|
|
const found = existing.find((s) => s.id === params.skillId)
|
|
if (!found) {
|
|
return { success: false, error: `Skill not found: ${params.skillId}` }
|
|
}
|
|
|
|
await upsertSkills({
|
|
skills: [
|
|
{
|
|
id: params.skillId,
|
|
name: params.name || found.name,
|
|
description: params.description || found.description,
|
|
content: params.content || found.content,
|
|
},
|
|
],
|
|
workspaceId,
|
|
userId: context.userId,
|
|
})
|
|
|
|
const updatedName = params.name || found.name
|
|
recordAudit({
|
|
workspaceId,
|
|
actorId: context.userId,
|
|
action: AuditAction.SKILL_UPDATED,
|
|
resourceType: AuditResourceType.SKILL,
|
|
resourceId: params.skillId,
|
|
resourceName: updatedName,
|
|
description: `Updated skill "${updatedName}"`,
|
|
metadata: { source: 'tool_input' },
|
|
})
|
|
captureServerEvent(
|
|
context.userId,
|
|
'skill_updated',
|
|
{
|
|
skill_id: params.skillId,
|
|
skill_name: updatedName,
|
|
workspace_id: workspaceId,
|
|
source: 'tool_input',
|
|
},
|
|
{ groups: { workspace: workspaceId } }
|
|
)
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
success: true,
|
|
operation,
|
|
skillId: params.skillId,
|
|
name: params.name || found.name,
|
|
message: `Updated skill "${params.name || found.name}"`,
|
|
},
|
|
}
|
|
}
|
|
|
|
if (operation === 'delete') {
|
|
if (!params.skillId) {
|
|
return { success: false, error: "'skillId' is required for 'delete'" }
|
|
}
|
|
|
|
const deleted = await deleteSkill({ skillId: params.skillId, workspaceId })
|
|
if (!deleted) {
|
|
return { success: false, error: `Skill not found: ${params.skillId}` }
|
|
}
|
|
|
|
recordAudit({
|
|
workspaceId,
|
|
actorId: context.userId,
|
|
action: AuditAction.SKILL_DELETED,
|
|
resourceType: AuditResourceType.SKILL,
|
|
resourceId: params.skillId,
|
|
description: 'Deleted skill',
|
|
metadata: { source: 'tool_input' },
|
|
})
|
|
captureServerEvent(
|
|
context.userId,
|
|
'skill_deleted',
|
|
{ skill_id: params.skillId, workspace_id: workspaceId, source: 'tool_input' },
|
|
{ groups: { workspace: workspaceId } }
|
|
)
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
success: true,
|
|
operation,
|
|
skillId: params.skillId,
|
|
message: 'Deleted skill',
|
|
},
|
|
}
|
|
}
|
|
|
|
return { success: false, error: `Unsupported operation for manage_skill: ${operation}` }
|
|
} catch (error) {
|
|
logger.error(
|
|
context.messageId
|
|
? `manage_skill execution failed [messageId:${context.messageId}]`
|
|
: 'manage_skill execution failed',
|
|
{
|
|
operation,
|
|
workspaceId,
|
|
error: toError(error).message,
|
|
}
|
|
)
|
|
return {
|
|
success: false,
|
|
error: getErrorMessage(error, 'Failed to manage skill'),
|
|
}
|
|
}
|
|
}
|