Theia API Documentation v1.73.0
    Preparing search index...

    Backend service that performs all skill filesystem and network work. The browser only triggers actions and renders results - ~/.agents/skills is outside the browser FileService sandbox, so all fetch + filesystem writes happen here.

    interface SkillInstallBackendService {
        fixSkill(entry: ResolvedSkillEntry): Promise<void>;
        install(entry: ResolvedSkillEntry): Promise<void>;
        link(entry: ResolvedSkillEntry): Promise<void>;
        listInstalledSkills(): Promise<InstalledSkillInfo[]>;
        uninstall(name: string): Promise<void>;
        unlink(name: string): Promise<void>;
        update(entry: ResolvedSkillEntry): Promise<void>;
    }

    Implemented by

    Index

    Methods