@dezkareid/ai-team 1.7.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agent-structurerc +2 -1
- package/AGENTS.md +42 -0
- package/README.md +34 -2
- package/context/architecture-principles.md +29 -10
- package/context/enterprise.md +44 -0
- package/context/outcomes.md +29 -9
- package/context/products/collecstory.md +15 -0
- package/context/products/default.md +15 -0
- package/context/products/personal-website.md +15 -0
- package/dist/mcp-server/index.js +46 -0
- package/gemini-extension.json +2 -2
- package/package.json +1 -1
package/.agent-structurerc
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"mcpServers": {
|
|
89
89
|
"ai-team": {
|
|
90
90
|
"claude-plugin": "company-context",
|
|
91
|
-
"version": "1.
|
|
91
|
+
"version": "1.8.1",
|
|
92
92
|
"package": "@dezkareid/ai-team",
|
|
93
93
|
"command": "npx",
|
|
94
94
|
"args": [
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"${package}@${version}"
|
|
97
97
|
],
|
|
98
98
|
"contextFiles": {
|
|
99
|
+
"get_enterprise_context": "context/enterprise.md",
|
|
99
100
|
"get_company_outcomes": "context/outcomes.md",
|
|
100
101
|
"get_architecture_principles": "context/architecture-principles.md"
|
|
101
102
|
}
|
package/AGENTS.md
CHANGED
|
@@ -43,6 +43,32 @@ Command content with {SCRIPT} and {{args}} placeholders.
|
|
|
43
43
|
- **`plugins/`**: Claude Code plugins. Each subdirectory represents a plugin and contains exported versions of commands and skills in Markdown format.
|
|
44
44
|
- **`.claude-plugin/`**: Metadata and configuration for Claude Code. The root folder contains the `marketplace.json`, while plugin folders contain their respective `plugin.json`.
|
|
45
45
|
|
|
46
|
+
### AI Team MCP
|
|
47
|
+
|
|
48
|
+
The `ai-team` MCP server provides authoritative business and architectural context.
|
|
49
|
+
|
|
50
|
+
#### Available Tools
|
|
51
|
+
|
|
52
|
+
| Tool | Description |
|
|
53
|
+
|---|---|
|
|
54
|
+
| `get_enterprise_context` | Retrieves the enterprise mission, strategic goals, and core architecture characteristics. |
|
|
55
|
+
| `get_company_outcomes` | Retrieves the high-level business outcomes and key results. |
|
|
56
|
+
| `get_architecture_principles` | Retrieves the technology-agnostic architecture principles. |
|
|
57
|
+
| `search_product` | Dynamic tool to search for specific product characteristics. |
|
|
58
|
+
|
|
59
|
+
#### Context Folder Structure
|
|
60
|
+
|
|
61
|
+
```text
|
|
62
|
+
context/
|
|
63
|
+
├── enterprise.md # Shared mission, goals, and core characteristics
|
|
64
|
+
├── outcomes.md # Shared strategic outcomes (OKRs)
|
|
65
|
+
├── architecture-principles.md # Fundamental philosophy and standards
|
|
66
|
+
└── products/ # Product-specific characteristics
|
|
67
|
+
├── personal-website.md
|
|
68
|
+
├── collecstory.md
|
|
69
|
+
└── default.md # Fallback for undocumented products
|
|
70
|
+
```
|
|
71
|
+
|
|
46
72
|
#### Project Configuration (`.agent-structurerc`)
|
|
47
73
|
|
|
48
74
|
File `.agent-structurerc` is used to configure the project structure.
|
|
@@ -69,6 +95,11 @@ File `.agent-structurerc` is used to configure the project structure.
|
|
|
69
95
|
"name": "web-quality",
|
|
70
96
|
"version": "0.0.1",
|
|
71
97
|
"description": "Skills for auditing and optimizing web quality (Performance, Accessibility, SEO, Core Web Vitals, Best Practices)"
|
|
98
|
+
},
|
|
99
|
+
"frontend-tools": {
|
|
100
|
+
"name": "frontend-tools",
|
|
101
|
+
"version": "0.0.1",
|
|
102
|
+
"description": "Expert procedural guidance for frontend development (React, Next.js, etc.)"
|
|
72
103
|
}
|
|
73
104
|
},
|
|
74
105
|
"commands": [
|
|
@@ -118,6 +149,16 @@ File `.agent-structurerc` is used to configure the project structure.
|
|
|
118
149
|
"name": "web-quality-audit",
|
|
119
150
|
"source": "skills/web-quality-audit/SKILL.md",
|
|
120
151
|
"claude-plugin": "web-quality"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "react-best-practices",
|
|
155
|
+
"source": "skills/react-best-practices/SKILL.md",
|
|
156
|
+
"claude-plugin": "frontend-tools"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "next-best-practices",
|
|
160
|
+
"source": "skills/next-best-practices/SKILL.md",
|
|
161
|
+
"claude-plugin": "frontend-tools"
|
|
121
162
|
}
|
|
122
163
|
],
|
|
123
164
|
"mcpServers": {
|
|
@@ -131,6 +172,7 @@ File `.agent-structurerc` is used to configure the project structure.
|
|
|
131
172
|
"${package}@${version}"
|
|
132
173
|
],
|
|
133
174
|
"contextFiles": {
|
|
175
|
+
"get_enterprise_context": "context/enterprise.md",
|
|
134
176
|
"get_company_outcomes": "context/outcomes.md",
|
|
135
177
|
"get_architecture_principles": "context/architecture-principles.md"
|
|
136
178
|
}
|
package/README.md
CHANGED
|
@@ -37,9 +37,33 @@ claude marketplace add dezkareid-ai-team https://github.com/dezkareid/ai-team
|
|
|
37
37
|
|
|
38
38
|
#### `company-context` — Authoritative company context and tools
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
### AI Team MCP
|
|
41
|
+
|
|
42
|
+
The `ai-team` MCP server provides authoritative business and architectural context to AI agents.
|
|
43
|
+
|
|
44
|
+
#### Available Tools
|
|
45
|
+
|
|
46
|
+
| Tool | Description |
|
|
41
47
|
|---|---|
|
|
42
|
-
| `
|
|
48
|
+
| `get_enterprise_context` | Retrieves the enterprise mission, strategic goals, and core architecture characteristics. |
|
|
49
|
+
| `get_company_outcomes` | Retrieves the high-level business outcomes and key results for the enterprise. |
|
|
50
|
+
| `get_architecture_principles` | Retrieves the technology-agnostic architecture principles and quality standards. |
|
|
51
|
+
| `search_product` | Searches for a specific product's characteristics and goals. Returns a default profile if not found. |
|
|
52
|
+
|
|
53
|
+
#### Context Structure
|
|
54
|
+
|
|
55
|
+
The documentation follows a hierarchical, technology-agnostic structure:
|
|
56
|
+
|
|
57
|
+
```text
|
|
58
|
+
context/
|
|
59
|
+
├── enterprise.md # Mission, goals, and core characteristics
|
|
60
|
+
├── outcomes.md # Shared strategic outcomes (OKRs)
|
|
61
|
+
├── architecture-principles.md # Fundamental philosophy and standards
|
|
62
|
+
└── products/ # Product-specific characteristics
|
|
63
|
+
├── personal-website.md
|
|
64
|
+
├── collecstory.md
|
|
65
|
+
└── default.md # Fallback for undocumented products
|
|
66
|
+
```
|
|
43
67
|
|
|
44
68
|
#### `web-quality` — Skills for auditing and optimizing web quality
|
|
45
69
|
|
|
@@ -52,6 +76,13 @@ claude marketplace add dezkareid-ai-team https://github.com/dezkareid/ai-team
|
|
|
52
76
|
| `core-web-vitals` | Optimize Core Web Vitals (LCP, INP, CLS) for better page experience and search ranking. |
|
|
53
77
|
| `best-practices` | Apply modern web development best practices for security, compatibility, and code quality. |
|
|
54
78
|
|
|
79
|
+
#### `frontend-tools` — Expert procedural guidance for frontend development
|
|
80
|
+
|
|
81
|
+
| Skill | Description |
|
|
82
|
+
|---|---|
|
|
83
|
+
| `react-best-practices` | Expert guidance for React development, including hooks, performance, and patterns. |
|
|
84
|
+
| `next-best-practices` | Best practices for Next.js applications, including RSC, caching, and routing. |
|
|
85
|
+
|
|
55
86
|
### Install a plugin
|
|
56
87
|
|
|
57
88
|
Once the marketplace is added, install a plugin with:
|
|
@@ -61,6 +92,7 @@ claude plugin install npm-tools
|
|
|
61
92
|
claude plugin install design-system
|
|
62
93
|
claude plugin install company-context
|
|
63
94
|
claude plugin install web-quality
|
|
95
|
+
claude plugin install frontend-tools
|
|
64
96
|
```
|
|
65
97
|
|
|
66
98
|
## Development
|
|
@@ -1,12 +1,31 @@
|
|
|
1
|
-
# Architecture Principles
|
|
1
|
+
# Dezkareid Enterprise: Architecture Principles
|
|
2
|
+
|
|
3
|
+
These principles define the fundamental philosophy and standards for all systems designed and built by Dezkareid Enterprise. They ensure that our technology-agnostic designs remain aligned with our strategic business goals.
|
|
2
4
|
|
|
3
5
|
## Core Principles
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
|
|
7
|
+
### 1. Simplicity over Complexity
|
|
8
|
+
We prioritize simple, maintainable solutions. Avoid over-engineering and "just-in-case" complexity. If a solution is difficult to explain, it is likely too complex.
|
|
9
|
+
|
|
10
|
+
### 2. Configuration-Driven Behavior
|
|
11
|
+
Systems should be behaviorally controlled through external configuration and parameters rather than hard-coded logic. This enables rapid adaptation to business changes without requiring structural modifications.
|
|
12
|
+
|
|
13
|
+
### 3. Statelessness and Modularity
|
|
14
|
+
Aim for stateless designs and high modularity. This simplifies scalability, improves system resilience, and ensures that components can be updated or replaced with minimal impact on the broader ecosystem.
|
|
15
|
+
|
|
16
|
+
### 4. Documentation as a Primary Artifact
|
|
17
|
+
Technical documentation is considered a first-class citizen and must be maintained as close as possible to the logic it describes. Systems are not considered "complete" unless they are fully documented for both human and automated consumption.
|
|
18
|
+
|
|
19
|
+
## Quality Standards
|
|
20
|
+
|
|
21
|
+
### 1. Performance-First Design
|
|
22
|
+
Performance is not an afterthought. Every architectural decision must consider its impact on system responsiveness and resource efficiency to ensure a superior user experience.
|
|
23
|
+
|
|
24
|
+
### 2. Universal Accessibility
|
|
25
|
+
Inclusivity is a baseline requirement. All user-facing interfaces must be designed to be accessible to everyone, regardless of their physical abilities or the devices they use.
|
|
26
|
+
|
|
27
|
+
### 3. Native Discoverability
|
|
28
|
+
Systems must be architected to be inherently discoverable. This includes adhering to semantic standards and structured data patterns that allow both users and external systems to easily find and index our products.
|
|
29
|
+
|
|
30
|
+
### 4. Integrity and Auditability
|
|
31
|
+
Data integrity and the ability to trace system state are paramount. Architecture must support clear audit trails and ensure that business logic is transparent and verifiable.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Dezkareid Enterprise: Enterprise Context
|
|
2
|
+
|
|
3
|
+
## Mission
|
|
4
|
+
Empowering individuals and businesses through expert services and engaging platforms that prioritize simplicity, reliability, and continuous innovation.
|
|
5
|
+
|
|
6
|
+
## Strategic Business Goals
|
|
7
|
+
1. **Innovation & Growth**: Continuously launch and evolve products that solve real-world problems for collectors and professionals.
|
|
8
|
+
2. **Operational Excellence**: Ensure the highest standards of reliability and performance across all services and platforms to build and maintain user trust.
|
|
9
|
+
3. **High-Quality User Experience**: Deliver products that are fast, accessible to all, and easy to discover, ensuring superior usability and market reach.
|
|
10
|
+
4. **Efficiency & Velocity**: Optimize internal processes and delivery models to respond quickly to market needs and user feedback.
|
|
11
|
+
|
|
12
|
+
## Enterprise Architecture Characteristics (Quality Attributes)
|
|
13
|
+
The following characteristics guide the design of all Dezkareid Enterprise systems, directly supporting our business goals:
|
|
14
|
+
|
|
15
|
+
### 1. Performance (Supports High-Quality UX & Operational Excellence)
|
|
16
|
+
- Systems must be optimized for speed and responsiveness to ensure a smooth user experience.
|
|
17
|
+
- Low latency and efficient resource utilization are core requirements for all platforms.
|
|
18
|
+
|
|
19
|
+
### 2. Accessibility & Usability (Supports High-Quality UX & Growth)
|
|
20
|
+
- Products must be inclusive by design, adhering to modern accessibility standards (e.g., WCAG).
|
|
21
|
+
- Interface and experience design must prioritize intuitive usability for all user segments.
|
|
22
|
+
|
|
23
|
+
### 3. Discoverability & SEO (Supports Growth & Innovation)
|
|
24
|
+
- Public-facing platforms must be optimized for search engine visibility and user discovery.
|
|
25
|
+
- Structured data and semantic markup should be used to ensure products are easily found and indexed.
|
|
26
|
+
|
|
27
|
+
### 4. Maintainability (Supports Efficiency)
|
|
28
|
+
- Systems should be designed for long-term health and ease of updates.
|
|
29
|
+
- Preference for clear, simple logic over complex, opaque solutions.
|
|
30
|
+
|
|
31
|
+
### 5. Scalability (Supports Growth)
|
|
32
|
+
- Architecture must support growth in user base and data volume without proportional increases in operational overhead.
|
|
33
|
+
- Aim for designs that can handle increased load through horizontal expansion.
|
|
34
|
+
|
|
35
|
+
### 6. Reliability & Trust (Supports Operational Excellence)
|
|
36
|
+
- Systems must be dependable and resilient to failure.
|
|
37
|
+
- Data integrity and availability are paramount to maintaining user confidence.
|
|
38
|
+
|
|
39
|
+
## Shared Enterprise Outcomes (2026)
|
|
40
|
+
- **Quality Benchmark**: Achieve and maintain a 99.9% availability target for all public-facing platforms.
|
|
41
|
+
- **Performance Standards**: Ensure core product pages achieve a Google Lighthouse performance score of 90+ on mobile and desktop.
|
|
42
|
+
- **Accessibility Compliance**: Reach 100% compliance with WCAG 2.1 Level AA standards for all user-facing interfaces.
|
|
43
|
+
- **User Satisfaction**: Reach a minimum 85% satisfaction score across the product portfolio.
|
|
44
|
+
- **Delivery Velocity**: Increase the frequency of meaningful product updates by 20% through optimized delivery frameworks.
|
package/context/outcomes.md
CHANGED
|
@@ -1,11 +1,31 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Dezkareid Enterprise: Shared Strategic Outcomes (2026)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
1. **Developer Productivity**: Increase developer velocity by 20% through AI-assisted tooling and standardized workflows.
|
|
5
|
-
2. **Operational Excellence**: Maintain 99.9% uptime for all core AI services and internal tools.
|
|
6
|
-
3. **Innovation**: Launch at least 3 new AI-powered features that directly solve customer pain points.
|
|
3
|
+
This document outlines the high-level business outcomes and key results for **Dezkareid Enterprise** and its product portfolio. These outcomes are technology-agnostic and represent our business priorities.
|
|
7
4
|
|
|
8
|
-
##
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
## Objective: Innovation & Growth
|
|
6
|
+
*Continuously launch and evolve products that solve real-world problems for collectors and professionals.*
|
|
7
|
+
|
|
8
|
+
**Key Results:**
|
|
9
|
+
- Successfully expand the **Collecstory** user base by 50% through improved organic discoverability (SEO) and community engagement.
|
|
10
|
+
- Achieve a 20% increase in lead generation for the **Personal Website** services (Consulting, Development, Mentoring) through enhanced reputation and professional visibility.
|
|
11
|
+
|
|
12
|
+
## Objective: Operational Excellence
|
|
13
|
+
*Ensure the highest standards of reliability and performance across all services and platforms to build and maintain user trust.*
|
|
14
|
+
|
|
15
|
+
**Key Results:**
|
|
16
|
+
- Maintain a 99.9% availability benchmark for all public-facing platforms and services.
|
|
17
|
+
- Reduce the time-to-resolution for reported user issues by 30% through improved internal diagnostics and standard documentation.
|
|
18
|
+
|
|
19
|
+
## Objective: High-Quality User Experience
|
|
20
|
+
*Deliver products that are fast, accessible to all, and easy to discover, ensuring superior usability and market reach.*
|
|
21
|
+
|
|
22
|
+
**Key Results:**
|
|
23
|
+
- Achieve a "High Quality" performance rating for all product interfaces on core user devices.
|
|
24
|
+
- Ensure 100% compliance with established accessibility standards for every user-facing platform.
|
|
25
|
+
|
|
26
|
+
## Objective: Efficiency & Velocity
|
|
27
|
+
*Optimize internal processes and delivery models to respond quickly to market needs and user feedback.*
|
|
28
|
+
|
|
29
|
+
**Key Results:**
|
|
30
|
+
- Increase the frequency of meaningful product updates and improvements by 20% by standardizing common business and design patterns.
|
|
31
|
+
- Achieve a 90% "Enterprise Confidence" score in our quarterly internal review of business logic and system transparency.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Product: Collecstory (Collector Platform)
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
An application and social platform for collectionism. It allows users to track their card and figure collections, share their progress through photography and sessions, and discover or purchase new items.
|
|
5
|
+
|
|
6
|
+
## Core Business Goals
|
|
7
|
+
- **User Engagement**: Foster a vibrant, active community of collectors through superior usability.
|
|
8
|
+
- **Community Growth**: Expand the user base by being highly discoverable via SEO and social sharing.
|
|
9
|
+
- **Marketplace Facilitation**: Become a trusted destination for discovering, finding, and sourcing collection items by optimizing for product discovery.
|
|
10
|
+
|
|
11
|
+
## Product-Specific Characteristics
|
|
12
|
+
- **Visual Performance**: Optimizing for high-performance image and media delivery to provide a fluid user experience.
|
|
13
|
+
- **Universal Accessibility**: Ensuring all users can manage and enjoy their collections regardless of device or ability.
|
|
14
|
+
- **Search Engine Visibility**: Strong focus on SEO and semantic data (e.g., Schema.org) for cards and collectibles to drive organic traffic.
|
|
15
|
+
- **Discovery-Focused**: Tools and features to help users easily find and buy missing pieces.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Product: Default Characteristics
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
This document defines the common characteristics and business alignment for products within the Dezkareid Enterprise that do not yet have a specific documentation file.
|
|
5
|
+
|
|
6
|
+
## Core Business Goals
|
|
7
|
+
- **Strategic Alignment**: All products must support the Enterprise mission of empowering individuals and businesses.
|
|
8
|
+
- **Value Delivery**: Focus on solving real-world problems and providing tangible benefits to users.
|
|
9
|
+
- **Operational Excellence**: Adhere to enterprise-wide standards for reliability and performance.
|
|
10
|
+
|
|
11
|
+
## Common Product Characteristics
|
|
12
|
+
- **Simplicity**: Minimalist design and intuitive user experience.
|
|
13
|
+
- **Quality-First**: High standards for performance, accessibility, and discoverability.
|
|
14
|
+
- **Data Integrity**: Commitment to secure and reliable data management.
|
|
15
|
+
- **Continuous Evolution**: Built for flexibility and rapid iteration based on user feedback.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Product: Personal Website (Services Business)
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
A platform dedicated to providing professional services in consulting, development, and mentoring. It represents the "Expert Services" pillar of the enterprise.
|
|
5
|
+
|
|
6
|
+
## Core Business Goals
|
|
7
|
+
- **Reputation & Authority**: Establish Dezkareid Enterprise as a leader in technical excellence and mentorship.
|
|
8
|
+
- **Client Success**: Deliver high-value consulting and development that results in measurable success for clients.
|
|
9
|
+
- **Discoverability**: Ensure potential clients can easily find services through search engines and professional networks.
|
|
10
|
+
|
|
11
|
+
## Product-Specific Characteristics
|
|
12
|
+
- **Performance & Loading Speed**: Fast-loading pages for a professional first impression and better search rankings.
|
|
13
|
+
- **Accessibility**: A fully accessible experience ensuring services are available to all potential clients.
|
|
14
|
+
- **Expertise-Driven**: Content and outcomes are directly based on the unique expertise of the Enterprise.
|
|
15
|
+
- **Outcome-Oriented**: Focus on achieving tangible client goals.
|
package/dist/mcp-server/index.js
CHANGED
|
@@ -23220,6 +23220,52 @@ async function main() {
|
|
|
23220
23220
|
name: 'ai-team',
|
|
23221
23221
|
version: config.version,
|
|
23222
23222
|
});
|
|
23223
|
+
// Register search_product tool
|
|
23224
|
+
server.registerTool('search_product', {
|
|
23225
|
+
description: 'Searches for a product in the Dezkareid Enterprise portfolio and returns its characteristics.',
|
|
23226
|
+
inputSchema: z.object({
|
|
23227
|
+
productName: z.string().describe('The name of the product to search for (e.g., "collecstory", "personal-website")'),
|
|
23228
|
+
}),
|
|
23229
|
+
}, async ({ productName }) => {
|
|
23230
|
+
const normalizedName = productName.toLowerCase().replace(/\s+/g, '-');
|
|
23231
|
+
const productPath = path.join(rootDir, 'context', 'products', `${normalizedName}.md`);
|
|
23232
|
+
const defaultPath = path.join(rootDir, 'context', 'products', 'default.md');
|
|
23233
|
+
try {
|
|
23234
|
+
if (fileExists(productPath)) {
|
|
23235
|
+
const content = readFileContent(productPath);
|
|
23236
|
+
return {
|
|
23237
|
+
content: [
|
|
23238
|
+
{
|
|
23239
|
+
type: 'text',
|
|
23240
|
+
text: content,
|
|
23241
|
+
},
|
|
23242
|
+
],
|
|
23243
|
+
};
|
|
23244
|
+
}
|
|
23245
|
+
else {
|
|
23246
|
+
const content = readFileContent(defaultPath);
|
|
23247
|
+
return {
|
|
23248
|
+
content: [
|
|
23249
|
+
{
|
|
23250
|
+
type: 'text',
|
|
23251
|
+
text: `The products was not found but here are the default enterprise product characteristics:\n\n${content}`,
|
|
23252
|
+
},
|
|
23253
|
+
],
|
|
23254
|
+
};
|
|
23255
|
+
}
|
|
23256
|
+
}
|
|
23257
|
+
catch (error) {
|
|
23258
|
+
return {
|
|
23259
|
+
content: [
|
|
23260
|
+
{
|
|
23261
|
+
type: 'text',
|
|
23262
|
+
text: `Error reading product content: ${error.message}`,
|
|
23263
|
+
},
|
|
23264
|
+
],
|
|
23265
|
+
isError: true,
|
|
23266
|
+
};
|
|
23267
|
+
}
|
|
23268
|
+
});
|
|
23223
23269
|
// Register tools based on contextFiles mapping
|
|
23224
23270
|
for (const toolName of Object.keys(contextFiles)) {
|
|
23225
23271
|
const relativePath = contextFiles[toolName];
|
package/gemini-extension.json
CHANGED