deploy: current vibn theia state
Some checks failed
Playwright Tests / Playwright Tests (ubuntu-22.04, Node.js 22.x) (push) Has been cancelled
3PP License Check / 3PP License Check (11, 22.x, ubuntu-22.04) (push) Has been cancelled
Publish packages to NPM / Perform Publishing (push) Has been cancelled

Made-with: Cursor
This commit is contained in:
2026-02-27 12:01:08 -08:00
commit 8bb5110148
3782 changed files with 640947 additions and 0 deletions

View File

@@ -0,0 +1,97 @@
// *****************************************************************************
// Copyright (C) 2026 EclipseSource GmbH.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { nls, URI } from '@theia/core';
import { OpenerService, open } from '@theia/core/lib/browser';
import { inject, injectable, postConstruct } from '@theia/core/shared/inversify';
import * as React from '@theia/core/shared/react';
import { Skill } from '@theia/ai-core/lib/common/skill';
import { SkillService } from '@theia/ai-core/lib/browser/skill-service';
import { AITableConfigurationWidget, TableColumn } from './base/ai-table-configuration-widget';
@injectable()
export class AISkillsConfigurationWidget extends AITableConfigurationWidget<Skill> {
static readonly ID = 'ai-skills-configuration-widget';
static readonly LABEL = nls.localize('theia/ai/ide/skillsConfiguration/label', 'Skills');
@inject(SkillService)
protected readonly skillService: SkillService;
@inject(OpenerService)
protected readonly openerService: OpenerService;
@postConstruct()
protected init(): void {
this.id = AISkillsConfigurationWidget.ID;
this.title.label = AISkillsConfigurationWidget.LABEL;
this.title.closable = false;
this.addClass('ai-configuration-widget');
this.loadItems().then(() => this.update());
this.toDispose.push(this.skillService.onSkillsChanged(() => {
this.loadItems().then(() => this.update());
}));
}
protected async loadItems(): Promise<void> {
this.items = this.skillService.getSkills();
}
protected getItemId(item: Skill): string {
return item.name;
}
protected getColumns(): TableColumn<Skill>[] {
return [
{
id: 'skill-name',
label: nls.localizeByDefault('Name'),
className: 'skill-name-column',
renderCell: (item: Skill) => <span>{item.name}</span>
},
{
id: 'skill-description',
label: nls.localizeByDefault('Description'),
className: 'skill-description-column',
renderCell: (item: Skill) => <span>{item.description}</span>
},
{
id: 'skill-location',
label: nls.localize('theia/ai/ide/skillsConfiguration/location/label', 'Location'),
className: 'skill-location-column',
renderCell: (item: Skill) => <span>{item.location}</span>
},
{
id: 'skill-open',
label: '',
className: 'skill-open-column',
renderCell: (item: Skill) => (
<button
className="theia-button secondary"
onClick={() => this.openSkill(item)}
title={nls.localizeByDefault('Open')}
>
{nls.localizeByDefault('Open')}
</button>
)
}
];
}
protected openSkill(skill: Skill): void {
open(this.openerService, URI.fromFilePath(skill.location));
}
}