asdm-cli 0.1.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.
Files changed (53) hide show
  1. package/README.md +784 -0
  2. package/dist/index.mjs +3013 -0
  3. package/package.json +58 -0
  4. package/registry/agents/.gitkeep +0 -0
  5. package/registry/agents/architect.asdm.md +71 -0
  6. package/registry/agents/code-reviewer.asdm.md +75 -0
  7. package/registry/agents/data-analyst.asdm.md +69 -0
  8. package/registry/agents/documentation-writer.asdm.md +70 -0
  9. package/registry/agents/mobile-engineer.asdm.md +68 -0
  10. package/registry/agents/security-auditor.asdm.md +74 -0
  11. package/registry/agents/test-engineer.asdm.md +70 -0
  12. package/registry/commands/.gitkeep +0 -0
  13. package/registry/commands/analyze-schema.asdm.md +73 -0
  14. package/registry/commands/audit-deps.asdm.md +76 -0
  15. package/registry/commands/check-file.asdm.md +58 -0
  16. package/registry/commands/generate-types.asdm.md +82 -0
  17. package/registry/commands/scaffold-component.asdm.md +89 -0
  18. package/registry/commands/summarize.asdm.md +61 -0
  19. package/registry/latest.json +253 -0
  20. package/registry/policy.yaml +14 -0
  21. package/registry/profiles/base/.gitkeep +0 -0
  22. package/registry/profiles/base/profile.yaml +19 -0
  23. package/registry/profiles/data-analytics/.gitkeep +0 -0
  24. package/registry/profiles/data-analytics/profile.yaml +24 -0
  25. package/registry/profiles/fullstack-engineer/.gitkeep +0 -0
  26. package/registry/profiles/fullstack-engineer/profile.yaml +38 -0
  27. package/registry/profiles/mobile/ios/.gitkeep +0 -0
  28. package/registry/profiles/mobile/profile.yaml +24 -0
  29. package/registry/profiles/security/profile.yaml +24 -0
  30. package/registry/skills/api-design/.gitkeep +0 -0
  31. package/registry/skills/api-design/SKILL.asdm.md +101 -0
  32. package/registry/skills/code-review/SKILL.asdm.md +83 -0
  33. package/registry/skills/data-pipeline/SKILL.asdm.md +95 -0
  34. package/registry/skills/frontend-design/SKILL.asdm.md +73 -0
  35. package/registry/skills/mobile-patterns/SKILL.asdm.md +102 -0
  36. package/registry/skills/pandas/.gitkeep +0 -0
  37. package/registry/skills/plan-protocol/SKILL.asdm.md +66 -0
  38. package/registry/skills/react-best-practices/.gitkeep +0 -0
  39. package/registry/skills/react-native/.gitkeep +0 -0
  40. package/registry/skills/sql/.gitkeep +0 -0
  41. package/registry/skills/swift-ui/.gitkeep +0 -0
  42. package/registry/skills/threat-modeling/SKILL.asdm.md +87 -0
  43. package/registry/v0.1.0.json +253 -0
  44. package/registry/v1.0.0.json +153 -0
  45. package/schemas/.gitkeep +0 -0
  46. package/schemas/agent.schema.json +82 -0
  47. package/schemas/command.schema.json +58 -0
  48. package/schemas/config.schema.json +29 -0
  49. package/schemas/lock.schema.json +65 -0
  50. package/schemas/manifest.schema.json +98 -0
  51. package/schemas/overlay.schema.json +72 -0
  52. package/schemas/profile.schema.json +64 -0
  53. package/schemas/skill.schema.json +64 -0
@@ -0,0 +1,76 @@
1
+ ---
2
+ name: audit-deps
3
+ type: command
4
+ description: "Audits project dependencies for security vulnerabilities and supply chain risks"
5
+ version: 1.0.0
6
+
7
+ providers:
8
+ opencode:
9
+ slash_command: /audit-deps
10
+ agent: security-auditor
11
+ claude-code:
12
+ slash_command: /audit-deps
13
+ agent: security-auditor
14
+ copilot:
15
+ slash_command: /audit-deps
16
+ agent: security-auditor
17
+ ---
18
+
19
+ # /audit-deps
20
+
21
+ Performs a comprehensive security audit of project dependencies. Checks for known CVEs, outdated packages, license compliance issues, and supply chain risk indicators.
22
+
23
+ ## Usage
24
+
25
+ ```
26
+ /audit-deps
27
+ /audit-deps --severity high
28
+ /audit-deps --fix
29
+ /audit-deps --format json
30
+ ```
31
+
32
+ ## Options
33
+
34
+ - `--severity <level>` — Report only findings at or above this level: `critical`, `high` (default), `medium`, `low`
35
+ - `--fix` — Automatically apply safe, non-breaking upgrades for found vulnerabilities
36
+ - `--format <type>` — Output format: `table` (default), `json`, `sarif`
37
+ - `--production` — Audit only production dependencies (skip devDependencies)
38
+ - `--license <policy>` — Fail on packages with incompatible licenses: `permissive`, `copyleft`
39
+
40
+ ## Checks Performed
41
+
42
+ ### CVE Scan
43
+ Cross-references installed package versions against the GitHub Advisory Database and OSV (Open Source Vulnerabilities). Reports CVE ID, CVSS score, affected version range, and fixed version.
44
+
45
+ ### Outdated Packages
46
+ Identifies packages more than 2 major versions behind latest stable. Major version lag increases the cost of future security updates.
47
+
48
+ ### Supply Chain Indicators
49
+ Flags packages exhibiting risk signals:
50
+ - Maintainer changes in the last 90 days
51
+ - Package publish from a new or recently-created npm account
52
+ - Lockfile hash mismatch (possible tampering)
53
+ - Package name typosquatting risk (similarity to popular packages)
54
+
55
+ ### License Compliance
56
+ Identifies packages with licenses that may be incompatible with your project's license:
57
+ - GPL/AGPL in proprietary projects
58
+ - Missing license (undeclared licenses = legal risk)
59
+ - Dual-licensed packages requiring commercial licensing
60
+
61
+ ## Output Example
62
+
63
+ ```
64
+ CRITICAL lodash@4.17.15 CVE-2021-23337 Prototype pollution via zipObjectDeep → fix: 4.17.21
65
+ HIGH axios@0.21.1 CVE-2021-3749 SSRF via redirect following → fix: 0.21.4
66
+ MEDIUM moment@2.29.1 Deprecated Use dayjs or date-fns instead
67
+
68
+ Summary: 2 vulnerabilities found (1 CRITICAL, 1 HIGH), 1 deprecation warning
69
+ Run /audit-deps --fix to apply 2 safe upgrades automatically
70
+ ```
71
+
72
+ ## Notes
73
+
74
+ - Always review `--fix` changes before committing — automatic upgrades may introduce breaking changes
75
+ - Run in CI on every PR to catch new vulnerabilities introduced by dependency updates
76
+ - SARIF output format is compatible with GitHub Code Scanning for automated tracking
@@ -0,0 +1,58 @@
1
+ ---
2
+ name: check-file
3
+ type: command
4
+ description: "Analyzes a file for quality issues including style, complexity, and correctness"
5
+ version: 1.0.0
6
+
7
+ providers:
8
+ opencode:
9
+ slash_command: /check-file
10
+ agent: code-reviewer
11
+ claude-code:
12
+ slash_command: /check-file
13
+ agent: code-reviewer
14
+ copilot:
15
+ slash_command: /check-file
16
+ agent: code-reviewer
17
+ ---
18
+
19
+ # /check-file
20
+
21
+ Performs a comprehensive quality analysis of a single file, reporting issues by severity.
22
+
23
+ ## Usage
24
+
25
+ ```
26
+ /check-file <path>
27
+ /check-file src/auth/login.ts
28
+ /check-file --severity high src/payments/stripe.ts
29
+ ```
30
+
31
+ ## Options
32
+
33
+ - `<path>` — Required. Path to the file to analyze (relative to project root)
34
+ - `--severity <level>` — Filter output to findings at or above this severity (default: LOW)
35
+ - `--focus <area>` — Limit analysis to a specific concern: `security`, `performance`, `style`, `correctness`
36
+
37
+ ## Behavior
38
+
39
+ 1. Reads the specified file
40
+ 2. Identifies the language and applicable rule set
41
+ 3. Performs static analysis across all configured categories
42
+ 4. Reports findings sorted by severity (CRITICAL first)
43
+ 5. Provides a summary with total count per severity level
44
+
45
+ ## Output Format
46
+
47
+ ```
48
+ CRITICAL src/auth/login.ts:47 Hardcoded JWT secret — move to environment variable
49
+ HIGH src/auth/login.ts:62 Missing error handling on async bcrypt.compare call
50
+ MEDIUM src/auth/login.ts:89 Function loginUser has cyclomatic complexity of 14
51
+ LOW src/auth/login.ts:12 Import order: third-party imports before local imports
52
+
53
+ Summary: 1 CRITICAL, 1 HIGH, 1 MEDIUM, 1 LOW
54
+ ```
55
+
56
+ ## Exit Behavior
57
+
58
+ Returns findings as output. Does not modify the file. Use with `code-reviewer` agent for suggested fixes.
@@ -0,0 +1,82 @@
1
+ ---
2
+ name: generate-types
3
+ type: command
4
+ description: "Generates TypeScript types from a JSON Schema, OpenAPI spec, or database schema"
5
+ version: 1.0.0
6
+
7
+ providers:
8
+ opencode:
9
+ slash_command: /generate-types
10
+ agent: architect
11
+ claude-code:
12
+ slash_command: /generate-types
13
+ agent: architect
14
+ copilot:
15
+ slash_command: /generate-types
16
+ agent: architect
17
+ ---
18
+
19
+ # /generate-types
20
+
21
+ Generates fully-typed TypeScript interfaces and types from a schema source. Supports JSON Schema, OpenAPI 3.x specifications, GraphQL schemas, and SQL table definitions.
22
+
23
+ ## Usage
24
+
25
+ ```
26
+ /generate-types <source>
27
+ /generate-types schemas/user.schema.json
28
+ /generate-types openapi.yaml --output src/types/api.ts
29
+ /generate-types --from-sql "CREATE TABLE users (...)"
30
+ ```
31
+
32
+ ## Options
33
+
34
+ - `<source>` — Required. Path to schema file or inline schema string
35
+ - `--output <path>` — Write generated types to this file (default: stdout)
36
+ - `--from-sql` — Parse a SQL CREATE TABLE statement and generate types
37
+ - `--strict` — Generate strict types with no implicit `any` or loose unions
38
+ - `--prefix <name>` — Prefix all generated type names (e.g., `--prefix Api` → `ApiUser`)
39
+ - `--readonly` — Mark all generated object properties as `readonly`
40
+
41
+ ## Supported Sources
42
+
43
+ | Source | Format |
44
+ |--------|--------|
45
+ | JSON Schema | `*.schema.json` |
46
+ | OpenAPI 3.x | `openapi.yaml`, `openapi.json` |
47
+ | GraphQL | `*.graphql`, `schema.gql` |
48
+ | SQL DDL | Inline `CREATE TABLE` statements |
49
+
50
+ ## Output Example
51
+
52
+ Input (`user.schema.json`):
53
+ ```json
54
+ {
55
+ "type": "object",
56
+ "required": ["id", "email"],
57
+ "properties": {
58
+ "id": { "type": "string", "format": "uuid" },
59
+ "email": { "type": "string", "format": "email" },
60
+ "name": { "type": "string" },
61
+ "createdAt": { "type": "string", "format": "date-time" }
62
+ }
63
+ }
64
+ ```
65
+
66
+ Generated output:
67
+ ```typescript
68
+ /** Auto-generated from user.schema.json — do not edit manually */
69
+
70
+ export interface User {
71
+ id: string;
72
+ email: string;
73
+ name?: string;
74
+ createdAt?: string;
75
+ }
76
+ ```
77
+
78
+ ## Rules
79
+
80
+ - Generated files always include a header comment marking them as auto-generated
81
+ - Required fields are non-optional; optional fields use `?` notation
82
+ - `format: date-time` maps to `string` by default; use `--date-type Date` to use `Date` objects
@@ -0,0 +1,89 @@
1
+ ---
2
+ name: scaffold-component
3
+ type: command
4
+ description: "Scaffolds a new UI component with boilerplate, types, and test file"
5
+ version: 1.0.0
6
+
7
+ providers:
8
+ opencode:
9
+ slash_command: /scaffold-component
10
+ agent: architect
11
+ claude-code:
12
+ slash_command: /scaffold-component
13
+ agent: architect
14
+ copilot:
15
+ slash_command: /scaffold-component
16
+ agent: architect
17
+ ---
18
+
19
+ # /scaffold-component
20
+
21
+ Generates a new UI component with all required boilerplate: component file, TypeScript props interface, CSS module (or styled component), and a test file with basic render assertions.
22
+
23
+ ## Usage
24
+
25
+ ```
26
+ /scaffold-component <name>
27
+ /scaffold-component Button
28
+ /scaffold-component UserCard --dir src/components/users
29
+ /scaffold-component DataTable --framework flutter
30
+ ```
31
+
32
+ ## Options
33
+
34
+ - `<name>` — Required. PascalCase component name (e.g., `UserCard`, `PaymentForm`)
35
+ - `--dir <path>` — Output directory (default: `src/components/<name>`)
36
+ - `--framework <name>` — Target framework: `react` (default), `react-native`, `flutter`
37
+ - `--no-tests` — Skip test file generation
38
+ - `--no-styles` — Skip style file generation
39
+ - `--story` — Also generate a Storybook story file
40
+
41
+ ## Generated Files (React)
42
+
43
+ For `/scaffold-component UserCard --dir src/components/users`:
44
+
45
+ ```
46
+ src/components/users/UserCard/
47
+ ├── UserCard.tsx # Component implementation
48
+ ├── UserCard.module.css # CSS module
49
+ ├── UserCard.test.tsx # Vitest/Jest test file
50
+ └── index.ts # Re-export barrel
51
+ ```
52
+
53
+ ### Component Template
54
+
55
+ ```tsx
56
+ import styles from './UserCard.module.css'
57
+
58
+ export interface UserCardProps {
59
+ // TODO: define props
60
+ }
61
+
62
+ export function UserCard(props: UserCardProps) {
63
+ return (
64
+ <div className={styles.container}>
65
+ {/* TODO: implement */}
66
+ </div>
67
+ )
68
+ }
69
+ ```
70
+
71
+ ### Test Template
72
+
73
+ ```tsx
74
+ import { render, screen } from '@testing-library/react'
75
+ import { UserCard } from './UserCard'
76
+
77
+ describe('UserCard', () => {
78
+ it('renders without crashing', () => {
79
+ render(<UserCard />)
80
+ // TODO: add meaningful assertions
81
+ })
82
+ })
83
+ ```
84
+
85
+ ## Notes
86
+
87
+ - Component names are validated as PascalCase before generation
88
+ - If the target directory already exists, the command fails with an error — no accidental overwrites
89
+ - For React Native, generates a `StyleSheet.create` style block instead of a CSS module
@@ -0,0 +1,61 @@
1
+ ---
2
+ name: summarize
3
+ type: command
4
+ description: "Generates a concise summary of a file, module, or diff for documentation or review"
5
+ version: 1.0.0
6
+
7
+ providers:
8
+ opencode:
9
+ slash_command: /summarize
10
+ agent: documentation-writer
11
+ claude-code:
12
+ slash_command: /summarize
13
+ agent: documentation-writer
14
+ copilot:
15
+ slash_command: /summarize
16
+ agent: documentation-writer
17
+ ---
18
+
19
+ # /summarize
20
+
21
+ Generates a structured summary of code or documentation. Useful for understanding unfamiliar code, writing commit messages, preparing PR descriptions, or producing change logs.
22
+
23
+ ## Usage
24
+
25
+ ```
26
+ /summarize <path>
27
+ /summarize src/core/parser.ts
28
+ /summarize --format changelog src/
29
+ /summarize --diff HEAD~1
30
+ ```
31
+
32
+ ## Options
33
+
34
+ - `<path>` — File or directory to summarize
35
+ - `--format <type>` — Output format: `prose` (default), `bullets`, `changelog`, `pr-description`
36
+ - `--diff <ref>` — Summarize changes since a git ref instead of the full file
37
+ - `--depth <level>` — Level of detail: `brief` (1 paragraph), `standard` (default), `detailed` (full breakdown)
38
+
39
+ ## Behavior
40
+
41
+ For a **file**: Describes purpose, key exports, notable patterns, and any caveats.
42
+
43
+ For a **directory**: Describes the module boundary, what it owns, and how components relate.
44
+
45
+ For a **diff**: Describes what changed, why it likely changed (based on context), and the risk surface of the change.
46
+
47
+ ## Output Example (file)
48
+
49
+ ```
50
+ ## src/core/parser.ts
51
+
52
+ Parses ASDM asset files (.asdm.md) from raw string content into structured ParsedAsset objects.
53
+
54
+ **Exports:** `parseAsset(content, sourcePath, provider?)`
55
+
56
+ **Behavior:** Splits YAML frontmatter from Markdown body, validates required fields (name, type,
57
+ description, version), extracts provider-specific config, and computes the SHA-256 of the raw content.
58
+ Throws a ParseError for malformed input with a descriptive message.
59
+
60
+ **Dependencies:** yaml (frontmatter parsing), crypto (SHA-256 hash)
61
+ ```
@@ -0,0 +1,253 @@
1
+ {
2
+ "$schema": "https://asdm.dev/schemas/manifest.schema.json",
3
+ "version": "0.1.0",
4
+ "policy": {
5
+ "locked_fields": [
6
+ "telemetry",
7
+ "install_hooks",
8
+ "auto_verify"
9
+ ],
10
+ "telemetry": true,
11
+ "auto_verify": true,
12
+ "install_hooks": true,
13
+ "allowed_profiles": [
14
+ "base",
15
+ "fullstack-engineer",
16
+ "data-analytics",
17
+ "mobile",
18
+ "security"
19
+ ],
20
+ "allowed_providers": [
21
+ "opencode",
22
+ "claude-code",
23
+ "copilot"
24
+ ],
25
+ "min_cli_version": "0.1.0"
26
+ },
27
+ "profiles": {
28
+ "base": {
29
+ "agents": [
30
+ "code-reviewer",
31
+ "documentation-writer"
32
+ ],
33
+ "skills": [
34
+ "plan-protocol",
35
+ "code-review"
36
+ ],
37
+ "commands": [
38
+ "check-file",
39
+ "summarize"
40
+ ],
41
+ "providers": [
42
+ "opencode",
43
+ "claude-code",
44
+ "copilot"
45
+ ]
46
+ },
47
+ "data-analytics": {
48
+ "extends": [
49
+ "base"
50
+ ],
51
+ "agents": [
52
+ "code-reviewer",
53
+ "data-analyst",
54
+ "documentation-writer"
55
+ ],
56
+ "skills": [
57
+ "plan-protocol",
58
+ "code-review",
59
+ "data-pipeline"
60
+ ],
61
+ "commands": [
62
+ "check-file",
63
+ "summarize",
64
+ "analyze-schema"
65
+ ],
66
+ "providers": [
67
+ "opencode",
68
+ "claude-code",
69
+ "copilot"
70
+ ]
71
+ },
72
+ "fullstack-engineer": {
73
+ "extends": [
74
+ "base"
75
+ ],
76
+ "agents": [
77
+ "code-reviewer",
78
+ "documentation-writer",
79
+ "architect",
80
+ "test-engineer"
81
+ ],
82
+ "skills": [
83
+ "plan-protocol",
84
+ "code-review",
85
+ "frontend-design",
86
+ "api-design"
87
+ ],
88
+ "commands": [
89
+ "check-file",
90
+ "summarize",
91
+ "generate-types",
92
+ "scaffold-component"
93
+ ],
94
+ "providers": [
95
+ "opencode",
96
+ "claude-code",
97
+ "copilot"
98
+ ]
99
+ },
100
+ "mobile": {
101
+ "extends": [
102
+ "base"
103
+ ],
104
+ "agents": [
105
+ "code-reviewer",
106
+ "documentation-writer",
107
+ "mobile-engineer"
108
+ ],
109
+ "skills": [
110
+ "plan-protocol",
111
+ "code-review",
112
+ "mobile-patterns"
113
+ ],
114
+ "commands": [
115
+ "check-file",
116
+ "summarize",
117
+ "scaffold-component"
118
+ ],
119
+ "providers": [
120
+ "opencode",
121
+ "claude-code",
122
+ "copilot"
123
+ ]
124
+ },
125
+ "security": {
126
+ "extends": [
127
+ "base"
128
+ ],
129
+ "agents": [
130
+ "code-reviewer",
131
+ "security-auditor",
132
+ "documentation-writer"
133
+ ],
134
+ "skills": [
135
+ "plan-protocol",
136
+ "code-review",
137
+ "threat-modeling"
138
+ ],
139
+ "commands": [
140
+ "check-file",
141
+ "summarize",
142
+ "audit-deps"
143
+ ],
144
+ "providers": [
145
+ "opencode",
146
+ "claude-code",
147
+ "copilot"
148
+ ]
149
+ }
150
+ },
151
+ "assets": {
152
+ "agents/architect.asdm.md": {
153
+ "sha256": "cac0b010fd350f9d23bfbb090327dc2e8e971be9daafa764269619224c5ca742",
154
+ "size": 3011,
155
+ "version": "1.0.0"
156
+ },
157
+ "agents/code-reviewer.asdm.md": {
158
+ "sha256": "682c73710a84ad8c40e3d8548f82811390ce3db32c6f136116afcde7f87fc75d",
159
+ "size": 2911,
160
+ "version": "1.0.0"
161
+ },
162
+ "agents/data-analyst.asdm.md": {
163
+ "sha256": "bb0ce105b9dd19eaef3be5d6b76f5ad273b4b95057d3bb2c998acbaf3dfc7589",
164
+ "size": 2865,
165
+ "version": "1.0.0"
166
+ },
167
+ "agents/documentation-writer.asdm.md": {
168
+ "sha256": "05f22780898bdc7dc9e842caab967241b99e02ca7d43d30b09ca8d19fc85d63a",
169
+ "size": 2788,
170
+ "version": "1.0.0"
171
+ },
172
+ "agents/mobile-engineer.asdm.md": {
173
+ "sha256": "ab51f952dcc8ce72cf3f48359e11c30fc7a3f5b32b534e56b04ee47cd382c3bd",
174
+ "size": 2903,
175
+ "version": "1.0.0"
176
+ },
177
+ "agents/security-auditor.asdm.md": {
178
+ "sha256": "8285378a7b30009a02f537d9fc882344c50444c1c1fe1b0ff35b8e49e475b2eb",
179
+ "size": 3167,
180
+ "version": "1.0.0"
181
+ },
182
+ "agents/test-engineer.asdm.md": {
183
+ "sha256": "e23266b82c0e3ccb96d613167c3c27d88651ff159fcb8e9b8eaf34b125681278",
184
+ "size": 2811,
185
+ "version": "1.0.0"
186
+ },
187
+ "skills/api-design/SKILL.asdm.md": {
188
+ "sha256": "637fc8014c22ddd8fa9122a44eb68cef70ffecfed724e8535b8d7d54091c579c",
189
+ "size": 3506,
190
+ "version": "1.0.0"
191
+ },
192
+ "skills/code-review/SKILL.asdm.md": {
193
+ "sha256": "de2011667b7f9e5c07cef878d43e85bb2d9fa2109c4ba64e161b6038012fab20",
194
+ "size": 3112,
195
+ "version": "1.0.0"
196
+ },
197
+ "skills/data-pipeline/SKILL.asdm.md": {
198
+ "sha256": "35e45153c4eafc4f1654b46865a226509634b3659365b03e19de482d10233699",
199
+ "size": 3686,
200
+ "version": "1.0.0"
201
+ },
202
+ "skills/frontend-design/SKILL.asdm.md": {
203
+ "sha256": "9cdddedd6f2b6caa8bafb8f8fa9864b6473c89170c4feedd05aaa9f1a30a8d3f",
204
+ "size": 3267,
205
+ "version": "1.0.0"
206
+ },
207
+ "skills/mobile-patterns/SKILL.asdm.md": {
208
+ "sha256": "9f336da4b1979cbdadad95012a4347f0e9830597f60e98e9084d6a0d07459acd",
209
+ "size": 3561,
210
+ "version": "1.0.0"
211
+ },
212
+ "skills/plan-protocol/SKILL.asdm.md": {
213
+ "sha256": "c0226a04e91caedc6dd9b51946508b9c05c29b51aa3402217c176161c0e7a16c",
214
+ "size": 2781,
215
+ "version": "1.0.0"
216
+ },
217
+ "skills/threat-modeling/SKILL.asdm.md": {
218
+ "sha256": "255ec1cc1773315b994bff8f09e647750210bc34f233c5ff83053fb6568f67e5",
219
+ "size": 4256,
220
+ "version": "1.0.0"
221
+ },
222
+ "commands/analyze-schema.asdm.md": {
223
+ "sha256": "2c855b9b02257cecc71c5a03faa05da52e215df148aa141c9258db8e0d2b6174",
224
+ "size": 2538,
225
+ "version": "1.0.0"
226
+ },
227
+ "commands/audit-deps.asdm.md": {
228
+ "sha256": "b5d54e07d9596b996090aae8e83476fb2d53b62301dd3feef82facd3d08f7150",
229
+ "size": 2781,
230
+ "version": "1.0.0"
231
+ },
232
+ "commands/check-file.asdm.md": {
233
+ "sha256": "3090793fb1eb3484626f7a4c9569df87ff486586e2e3f4046c15749003a4af73",
234
+ "size": 1700,
235
+ "version": "1.0.0"
236
+ },
237
+ "commands/generate-types.asdm.md": {
238
+ "sha256": "d1b1401c495410ee68aedc055700cfb11794228d8f363bdf6463b75e58bdff20",
239
+ "size": 2259,
240
+ "version": "1.0.0"
241
+ },
242
+ "commands/scaffold-component.asdm.md": {
243
+ "sha256": "312cf07c16a44fe334037281213aed99d8410070acbfe35e6ae0968ec8a5263f",
244
+ "size": 2327,
245
+ "version": "1.0.0"
246
+ },
247
+ "commands/summarize.asdm.md": {
248
+ "sha256": "0f52ab9a25f6f802aa2a9025d8a4e9a5825aa04ba94173884bb189566ad07ad0",
249
+ "size": 1919,
250
+ "version": "1.0.0"
251
+ }
252
+ }
253
+ }
@@ -0,0 +1,14 @@
1
+ version: "1.0.0"
2
+ allowed_profiles:
3
+ - base
4
+ - fullstack-engineer
5
+ - data-analytics
6
+ - mobile
7
+ - security
8
+ default_profile: base
9
+ allow_custom_agents: false
10
+ require_integrity_check: true
11
+ emit_targets:
12
+ - opencode
13
+ - claude-code
14
+ - copilot
File without changes
@@ -0,0 +1,19 @@
1
+ name: base
2
+ description: "Minimal base profile with essential agents"
3
+
4
+ agents:
5
+ - code-reviewer
6
+ - documentation-writer
7
+
8
+ skills:
9
+ - plan-protocol
10
+ - code-review
11
+
12
+ commands:
13
+ - check-file
14
+ - summarize
15
+
16
+ providers:
17
+ - opencode
18
+ - claude-code
19
+ - copilot
File without changes
@@ -0,0 +1,24 @@
1
+ name: data-analytics
2
+ description: "Data science and analytics profile"
3
+ extends:
4
+ - base
5
+
6
+ agents:
7
+ - code-reviewer
8
+ - data-analyst
9
+ - documentation-writer
10
+
11
+ skills:
12
+ - plan-protocol
13
+ - code-review
14
+ - data-pipeline
15
+
16
+ commands:
17
+ - check-file
18
+ - summarize
19
+ - analyze-schema
20
+
21
+ providers:
22
+ - opencode
23
+ - claude-code
24
+ - copilot
File without changes