chrome-devtools-frontend
Version:
Chrome DevTools UI
14 lines (11 loc) • 410 B
text/typescript
// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This will become a union type as we add more skills (e.g. 'styling' | 'network').
export type SkillName = 'styling'|'network'|'accessibility';
export interface Skill {
name: SkillName;
description: string;
allowedTools: string[];
instructions: string;
}