@dezkareid/ai-team 1.3.2 → 1.4.0
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/README.md +7 -10
- package/context/architecture-principles.md +12 -0
- package/context/outcomes.md +11 -0
- package/dist/mcp-server/index.js +16696 -0
- package/gemini-extension.json +10 -1
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ gemini extensions install https://github.com/dezkareid/ai-team
|
|
|
17
17
|
Add this marketplace to Claude Code so it can discover the available plugins:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
claude marketplace add https://github.com/dezkareid/ai-team
|
|
20
|
+
claude marketplace add dezkareid-ai-team https://github.com/dezkareid/ai-team
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### Available plugins
|
|
@@ -29,19 +29,16 @@ claude marketplace add https://github.com/dezkareid/ai-team
|
|
|
29
29
|
| `npm-package-setup` | Initialize and publish a new npm package. |
|
|
30
30
|
| `npm-publish` | Setup NPM publication workflow with OIDC and provenance using local standard actions (Monorepo & pnpm support). |
|
|
31
31
|
|
|
32
|
+
#### `design-system` — Authoritative design system context and tools
|
|
33
|
+
|
|
34
|
+
#### `company-context` — Authoritative company context and tools
|
|
35
|
+
|
|
32
36
|
### Install a plugin
|
|
33
37
|
|
|
34
38
|
Once the marketplace is added, install a plugin with:
|
|
35
39
|
|
|
36
40
|
```bash
|
|
37
41
|
claude plugin install npm-tools
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Use a command
|
|
41
|
-
|
|
42
|
-
Invoke any installed command directly from Claude Code:
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
/npm-package-setup my-lib 0.1.0 "A utility library"
|
|
46
|
-
/npm-publish
|
|
42
|
+
claude plugin install design-system
|
|
43
|
+
claude plugin install company-context
|
|
47
44
|
```
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Architecture Principles
|
|
2
|
+
|
|
3
|
+
## Core Principles
|
|
4
|
+
1. **Simplicity over Complexity**: Prefer simple, maintainable solutions over complex ones. Avoid over-engineering.
|
|
5
|
+
2. **Configuration-Driven**: Design systems to be behaviorally controlled via configuration rather than hardcoded logic.
|
|
6
|
+
3. **Stateless by Default**: Aim for stateless services to improve scalability and simplify deployment.
|
|
7
|
+
4. **Documentation as Code**: Maintain technical documentation close to the code it describes (e.g., Markdown files in the repository).
|
|
8
|
+
|
|
9
|
+
## Standards
|
|
10
|
+
- **Language**: TypeScript is the primary language for all tooling.
|
|
11
|
+
- **Protocol**: Use Model Context Protocol (MCP) for exposing internal context to AI agents.
|
|
12
|
+
- **Testing**: All new features must include unit and/or integration tests.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Company Outcomes 2026
|
|
2
|
+
|
|
3
|
+
## Strategic Goals
|
|
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.
|
|
7
|
+
|
|
8
|
+
## Key Results (OKRs)
|
|
9
|
+
- **OKR 1**: 100% of engineering teams using `ai-team` CLI for routine tasks.
|
|
10
|
+
- **OKR 2**: Reduce bug resolution time by 30% using automated diagnosis tools.
|
|
11
|
+
- **OKR 3**: Achieve 85% developer satisfaction score in the quarterly survey.
|