21ff42074d
## Summary This PR introduces a Skills system for AI agents, inspired by the [Agent Skills specification](https://agentskills.io/specification). ## Changes ### Backend - **SkillEntity**: New database entity with migration for storing skills - **V2 Sync Mechanism**: Implemented FlatSkill, builders, validators, and action handlers following the v2 flat entity pattern - **Standard Skills**: Pre-defined skills (workflow-building, data-manipulation, dashboard-building, metadata-building, research, code-interpreter, xlsx, pdf, docx, pptx) - **GraphQL API**: CRUD operations for skills with proper guards and permissions - **Workspace Cache**: Integrated skills into the workspace cache system ### Frontend - **Skills Table**: Searchable table in AI settings showing all skills - **Skill Form**: Create/edit page with Label (primary), Description, and Content (markdown editor) - **API Name**: Following existing patterns, name is derived from label with advanced settings toggle for custom API names - **Standard vs Custom**: Standard skills are read-only, custom skills can be edited/deleted ## Key Design Decisions - Skills are stored in the database (Salesforce-like approach) rather than files - Name is derived from Label by default (isLabelSyncedWithName pattern) - Skills reference functions/files via @ mentions in markdown content rather than explicit relations - Standard skills are synced from code, custom skills are created via UI ## Screenshots Skills table and form UI follow existing settings patterns. ## Testing - [x] Lint passes - [x] Typecheck passes - [ ] CI tests
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { faker } from '@faker-js/faker';
|
|
import { expectOneNotInternalServerErrorSnapshot } from 'test/integration/graphql/utils/expect-one-not-internal-server-error-snapshot.util';
|
|
import { deleteSkill } from 'test/integration/metadata/suites/skill/utils/delete-skill.util';
|
|
import { findSkills } from 'test/integration/metadata/suites/skill/utils/find-skills.util';
|
|
import {
|
|
eachTestingContextFilter,
|
|
type EachTestingContext,
|
|
} from 'twenty-shared/testing';
|
|
|
|
type TestContext = {
|
|
input: () => {
|
|
id: string;
|
|
};
|
|
};
|
|
|
|
type DeleteSkillTestingContext = EachTestingContext<TestContext>[];
|
|
|
|
describe('Skill deletion should fail', () => {
|
|
const failingSkillDeletionTestCases: DeleteSkillTestingContext = [
|
|
{
|
|
title: 'when deleting a non-existent skill',
|
|
context: {
|
|
input: () => ({
|
|
id: faker.string.uuid(),
|
|
}),
|
|
},
|
|
},
|
|
];
|
|
|
|
it.each(eachTestingContextFilter(failingSkillDeletionTestCases))(
|
|
'$title',
|
|
async ({ context }) => {
|
|
const { id } = context.input();
|
|
|
|
const { errors } = await deleteSkill({
|
|
expectToFail: true,
|
|
input: {
|
|
id,
|
|
},
|
|
});
|
|
|
|
expectOneNotInternalServerErrorSnapshot({ errors });
|
|
},
|
|
);
|
|
|
|
it('should fail when attempting to delete a standard skill', async () => {
|
|
const { data } = await findSkills({
|
|
expectToFail: false,
|
|
input: undefined,
|
|
gqlFields: 'id name isCustom',
|
|
});
|
|
|
|
const standardSkill = data.skills.find((skill) => skill.isCustom === false);
|
|
|
|
// If there are no standard skills, skip this test
|
|
if (!standardSkill) {
|
|
return;
|
|
}
|
|
|
|
const { errors } = await deleteSkill({
|
|
expectToFail: true,
|
|
input: {
|
|
id: standardSkill.id,
|
|
},
|
|
});
|
|
|
|
expectOneNotInternalServerErrorSnapshot({ errors });
|
|
});
|
|
});
|