@vibe-engineer/adapter-pi 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.
@@ -0,0 +1,56 @@
1
+ import { SkillId, ValidationIssue, GeneratedFileManifest, AdapterCapabilityMatrix } from '../schema/index.js';
2
+
3
+ declare const CREATE_PI_ASSET_FAMILIES: readonly ["pi-skill-files", "pi-prompt-templates"];
4
+ type CreatePiAssetFamilyId = (typeof CREATE_PI_ASSET_FAMILIES)[number];
5
+ type CreatePiAssetKind = "skill" | "prompt-template";
6
+ type CreatePiAssetConflictPolicy = "fail-on-conflict" | "allow-identical-overwrite";
7
+ type CreatePiAssetExistingPathKind = "missing" | "file" | "directory" | "symlink";
8
+ interface CreatePiAssetDescriptor {
9
+ readonly kind: CreatePiAssetKind;
10
+ readonly familyId: CreatePiAssetFamilyId;
11
+ readonly skillId: SkillId;
12
+ readonly path: string;
13
+ readonly shippedTemplatePath: string;
14
+ readonly manifestPathPattern: string;
15
+ }
16
+ interface CreatePiAssetPlannedWrite extends CreatePiAssetDescriptor {
17
+ readonly content: string;
18
+ }
19
+ interface CreatePiAssetExistingPathState {
20
+ readonly path: string;
21
+ readonly kind: CreatePiAssetExistingPathKind;
22
+ readonly currentContent?: string;
23
+ }
24
+ interface CreatePiAssetWritePlan {
25
+ readonly conflictPolicy: CreatePiAssetConflictPolicy;
26
+ readonly writes: readonly CreatePiAssetPlannedWrite[];
27
+ readonly families: readonly CreatePiAssetFamilyId[];
28
+ }
29
+ interface CreatePiAssetValidationIssue extends ValidationIssue {
30
+ readonly severity: "error";
31
+ }
32
+ type CreatePiAssetValidationResult<T> = {
33
+ readonly valid: true;
34
+ readonly value: T;
35
+ readonly issues: readonly [];
36
+ } | {
37
+ readonly valid: false;
38
+ readonly issues: readonly CreatePiAssetValidationIssue[];
39
+ };
40
+ declare const selectCreatePiAssets: (input?: {
41
+ readonly manifest?: GeneratedFileManifest;
42
+ readonly capabilityMatrix?: AdapterCapabilityMatrix;
43
+ }) => readonly CreatePiAssetDescriptor[];
44
+ declare class CreatePiAssetValidationError extends Error {
45
+ readonly issues: readonly CreatePiAssetValidationIssue[];
46
+ constructor(message: string, issues: readonly CreatePiAssetValidationIssue[]);
47
+ }
48
+ declare const validateCreatePiAssetWritePlan: (input: {
49
+ readonly manifest: GeneratedFileManifest;
50
+ readonly capabilityMatrix: AdapterCapabilityMatrix;
51
+ readonly writes: readonly CreatePiAssetPlannedWrite[];
52
+ readonly existingPaths: readonly CreatePiAssetExistingPathState[];
53
+ readonly conflictPolicy: CreatePiAssetConflictPolicy;
54
+ }) => CreatePiAssetValidationResult<CreatePiAssetWritePlan>;
55
+
56
+ export { CREATE_PI_ASSET_FAMILIES, type CreatePiAssetConflictPolicy, type CreatePiAssetDescriptor, type CreatePiAssetExistingPathKind, type CreatePiAssetExistingPathState, type CreatePiAssetFamilyId, type CreatePiAssetKind, type CreatePiAssetPlannedWrite, CreatePiAssetValidationError, type CreatePiAssetValidationIssue, type CreatePiAssetValidationResult, type CreatePiAssetWritePlan, selectCreatePiAssets, validateCreatePiAssetWritePlan };
@@ -0,0 +1,14 @@
1
+ import {
2
+ CREATE_PI_ASSET_FAMILIES,
3
+ CreatePiAssetValidationError,
4
+ selectCreatePiAssets,
5
+ validateCreatePiAssetWritePlan
6
+ } from "../chunk-PJHJYGIJ.js";
7
+ import "../chunk-RC3EILIE.js";
8
+ import "../chunk-VXZJPOEE.js";
9
+ export {
10
+ CREATE_PI_ASSET_FAMILIES,
11
+ CreatePiAssetValidationError,
12
+ selectCreatePiAssets,
13
+ validateCreatePiAssetWritePlan
14
+ };
@@ -0,0 +1,10 @@
1
+ import { GeneratedFileManifest, DownstreamManifestSummary, ValidationResult } from '../schema/index.js';
2
+ export { CREATE_PI_ASSET_FAMILIES, CreatePiAssetConflictPolicy, CreatePiAssetDescriptor, CreatePiAssetExistingPathKind, CreatePiAssetExistingPathState, CreatePiAssetFamilyId, CreatePiAssetKind, CreatePiAssetPlannedWrite, CreatePiAssetValidationError, CreatePiAssetValidationIssue, CreatePiAssetValidationResult, CreatePiAssetWritePlan, selectCreatePiAssets, validateCreatePiAssetWritePlan } from '../create-consumption/index.js';
3
+
4
+ declare const PI_GENERATED_FILE_MANIFEST_SCHEMA_VERSION: "pi-generated-file-manifest/v1";
5
+ declare const PI_GENERATED_FILE_MANIFEST: GeneratedFileManifest;
6
+ declare const getPiGeneratedFileManifest: () => GeneratedFileManifest;
7
+ declare const validatePiGeneratedFileManifest: (value: unknown) => ValidationResult<GeneratedFileManifest>;
8
+ declare const createPiDownstreamManifestSummary: () => DownstreamManifestSummary;
9
+
10
+ export { PI_GENERATED_FILE_MANIFEST, PI_GENERATED_FILE_MANIFEST_SCHEMA_VERSION, createPiDownstreamManifestSummary, getPiGeneratedFileManifest, validatePiGeneratedFileManifest };
@@ -0,0 +1,24 @@
1
+ import {
2
+ CREATE_PI_ASSET_FAMILIES,
3
+ CreatePiAssetValidationError,
4
+ PI_GENERATED_FILE_MANIFEST,
5
+ PI_GENERATED_FILE_MANIFEST_SCHEMA_VERSION,
6
+ createPiDownstreamManifestSummary,
7
+ getPiGeneratedFileManifest,
8
+ selectCreatePiAssets,
9
+ validateCreatePiAssetWritePlan,
10
+ validatePiGeneratedFileManifest
11
+ } from "../chunk-PJHJYGIJ.js";
12
+ import "../chunk-RC3EILIE.js";
13
+ import "../chunk-VXZJPOEE.js";
14
+ export {
15
+ CREATE_PI_ASSET_FAMILIES,
16
+ CreatePiAssetValidationError,
17
+ PI_GENERATED_FILE_MANIFEST,
18
+ PI_GENERATED_FILE_MANIFEST_SCHEMA_VERSION,
19
+ createPiDownstreamManifestSummary,
20
+ getPiGeneratedFileManifest,
21
+ selectCreatePiAssets,
22
+ validateCreatePiAssetWritePlan,
23
+ validatePiGeneratedFileManifest
24
+ };
@@ -0,0 +1,214 @@
1
+ declare const EVIDENCE_STATES: readonly ["known", "unknown", "deferred", "blocked"];
2
+ declare const READINESS_STATES: readonly ["ready", "unknown", "deferred", "blocked"];
3
+ declare const SKILL_IDS: readonly ["brainstorm", "grill-me", "task", "plan", "build", "ship"];
4
+ declare const GENERATED_FILE_FAMILY_IDS: readonly ["pi-skill-files", "pi-prompt-templates", "pi-extensions", "pi-package-manifest", "context-files", "harness-config"];
5
+ declare const SANDBOX_CAPABILITY_STATES: readonly ["proven", "not_provided", "unknown", "blocked", "pending-live"];
6
+ declare const I14A_RUNTIME_EXECUTION_CLAIMS: readonly ["not-claimed", "pending-live", "blocked"];
7
+ declare const I14A_OUT_OF_SCOPE_RUNTIME_EXECUTION_CLAIMS: readonly ["proven", "live-proven", "runtime-proven", "loaded", "executed"];
8
+ declare const GENERATED_FILE_PRODUCER_LANE_IDS: readonly ["I-14B-pi-adapter-runtime-skill-consumption", "I-15A-create-import-cli-ux-selected-harness"];
9
+ declare const GENERATED_FILE_CONSUMER_LANE_IDS: readonly ["I-08-context-graph-index-drift", "I-14B-pi-adapter-runtime-skill-consumption", "I-15A-create-import-cli-ux-selected-harness", "I-15B-starter-template-harness-consumption", "I-18-security-safety-hooks-policy", "I-21-build-skill-orchestration"];
10
+ type EvidenceState = (typeof EVIDENCE_STATES)[number];
11
+ type ReadinessState = (typeof READINESS_STATES)[number];
12
+ type SkillId = (typeof SKILL_IDS)[number];
13
+ type GeneratedFileFamilyId = (typeof GENERATED_FILE_FAMILY_IDS)[number];
14
+ type SandboxCapabilityState = (typeof SANDBOX_CAPABILITY_STATES)[number];
15
+ type I14ARuntimeExecutionClaim = (typeof I14A_RUNTIME_EXECUTION_CLAIMS)[number];
16
+ type GeneratedFileProducerLaneId = (typeof GENERATED_FILE_PRODUCER_LANE_IDS)[number];
17
+ type GeneratedFileConsumerLaneId = (typeof GENERATED_FILE_CONSUMER_LANE_IDS)[number];
18
+ interface ValidationIssue {
19
+ readonly path: string;
20
+ readonly code: string;
21
+ readonly message: string;
22
+ }
23
+ type ValidationResult<T> = {
24
+ readonly valid: true;
25
+ readonly value: T;
26
+ readonly issues: readonly [];
27
+ } | {
28
+ readonly valid: false;
29
+ readonly issues: readonly ValidationIssue[];
30
+ };
31
+ interface EvidenceRecord {
32
+ readonly state: EvidenceState;
33
+ readonly source: string;
34
+ readonly notes: string;
35
+ }
36
+ interface VersionCompatibility {
37
+ readonly harnessName: string;
38
+ readonly harnessVersionRange: string;
39
+ readonly resourceFormatVersion: string;
40
+ readonly runtimeRequirements: readonly string[];
41
+ readonly compatibilityEvidence: EvidenceRecord;
42
+ }
43
+ interface CapabilitySurface {
44
+ readonly evidence: EvidenceRecord;
45
+ readonly support: ReadinessState;
46
+ readonly details: string;
47
+ readonly downstreamConsequence: string;
48
+ }
49
+ interface SkillCapability {
50
+ readonly skillId: SkillId;
51
+ readonly nativeCommand: string;
52
+ readonly resourceFamily: GeneratedFileFamilyId;
53
+ readonly evidence: EvidenceRecord;
54
+ readonly readiness: ReadinessState;
55
+ readonly protocolSource: string;
56
+ }
57
+ interface SkillsCommandsSurface extends CapabilitySurface {
58
+ readonly nativeFormat: string;
59
+ readonly autoloadDiscovery: readonly string[];
60
+ readonly skills: readonly SkillCapability[];
61
+ }
62
+ interface SubagentCapability extends CapabilitySurface {
63
+ readonly implementationKind: "built-in" | "extension-built" | "external" | "unsupported";
64
+ readonly requiresGeneratedExtension: boolean;
65
+ }
66
+ interface PlanModeCapability extends CapabilitySurface {
67
+ readonly implementationKind: "built-in" | "extension-built" | "external" | "unsupported";
68
+ readonly requiresGeneratedExtension: boolean;
69
+ }
70
+ interface CommandInvocationModel {
71
+ readonly interactive: CapabilitySurface;
72
+ readonly printMode: CapabilitySurface;
73
+ readonly jsonMode: CapabilitySurface;
74
+ readonly rpcMode: CapabilitySurface;
75
+ readonly sdk: CapabilitySurface;
76
+ readonly shellCommandPolicy: "not-required" | "default-deny" | "blocked";
77
+ }
78
+ interface GeneratedFilesCapability {
79
+ readonly evidence: EvidenceRecord;
80
+ readonly manifestSchemaVersion: string;
81
+ readonly families: readonly GeneratedFileFamilyId[];
82
+ readonly downstreamConsequence: string;
83
+ }
84
+ interface PackageDistributionCapability extends CapabilitySurface {
85
+ readonly distributionKinds: readonly ("project-local-files" | "pi-package" | "npm-package" | "global-install")[];
86
+ readonly trustUpdatePolicy: string;
87
+ }
88
+ interface SecurityTrustCapability {
89
+ readonly evidence: EvidenceRecord;
90
+ readonly projectTrustRequired: boolean;
91
+ readonly extensionExecution: "none" | "typescript-extension" | "package-extension";
92
+ readonly commandPolicy: "default-deny" | "not-applicable";
93
+ readonly sandboxCapability: SandboxCapabilityState;
94
+ readonly credentialPolicy: "no-credentials-required" | "operator-supplied-only" | "unknown-blocked";
95
+ readonly destructiveOperations: "forbidden" | "approval-required" | "not-applicable";
96
+ readonly externalIntegration: "disabled-by-default" | "read-only" | "unknown-blocked";
97
+ readonly trustBoundary: string;
98
+ }
99
+ interface CapabilityFlags {
100
+ readonly skills: boolean;
101
+ readonly prompts: boolean;
102
+ readonly hooks: boolean;
103
+ readonly extensions: boolean;
104
+ readonly subagents: boolean;
105
+ readonly planMode: boolean;
106
+ readonly contextFiles: boolean;
107
+ readonly rpc: boolean;
108
+ readonly sdk: boolean;
109
+ readonly jsonMode: boolean;
110
+ readonly packages: boolean;
111
+ readonly ui: boolean;
112
+ readonly unsupportedFeaturePolicy: "block" | "defer" | "unknown-block";
113
+ }
114
+ interface RealBoundaryWitness {
115
+ readonly evidence: EvidenceRecord;
116
+ readonly boundaryStatus: "implemented" | "pending-live" | "blocked" | "deferred" | "unknown";
117
+ readonly producer: string;
118
+ readonly carrier: string;
119
+ readonly consumer: string;
120
+ readonly evidencePath: string;
121
+ readonly runtimeExecutionClaim: I14ARuntimeExecutionClaim;
122
+ }
123
+ interface AdapterSelectionStatus {
124
+ readonly manifestSelectable: boolean;
125
+ readonly createImportSelectable: boolean;
126
+ readonly readiness: ReadinessState;
127
+ readonly reason: string;
128
+ }
129
+ interface AdapterCapability {
130
+ readonly adapterId: string;
131
+ readonly displayName: string;
132
+ readonly evidenceStatus: EvidenceRecord;
133
+ readonly versionCompatibility: VersionCompatibility;
134
+ readonly skillsCommandsSurface: SkillsCommandsSurface;
135
+ readonly promptTemplateSurface: CapabilitySurface;
136
+ readonly hookEventSupport: CapabilitySurface;
137
+ readonly subagentCapability: SubagentCapability;
138
+ readonly planModeCapability: PlanModeCapability;
139
+ readonly contextFileConventions: CapabilitySurface;
140
+ readonly commandInvocationModel: CommandInvocationModel;
141
+ readonly generatedFiles: GeneratedFilesCapability;
142
+ readonly packageDistribution: PackageDistributionCapability;
143
+ readonly securityTrust: SecurityTrustCapability;
144
+ readonly capabilityFlags: CapabilityFlags;
145
+ readonly realBoundaryWitness: RealBoundaryWitness;
146
+ readonly selection: AdapterSelectionStatus;
147
+ }
148
+ interface AdapterCapabilityMatrix {
149
+ readonly schemaVersion: "pi-adapter-capability-matrix/v1";
150
+ readonly producedByLane: "I-14A-pi-adapter-capability-generated-file-manifest";
151
+ readonly adapterPackage: "@vibe-engineer/adapter-pi";
152
+ readonly adapters: readonly AdapterCapability[];
153
+ }
154
+ interface GeneratedFileOwner {
155
+ readonly ownerKind: "lane" | "package";
156
+ readonly ownerId: GeneratedFileProducerLaneId;
157
+ readonly writePathScope: readonly string[];
158
+ readonly allowedOperations: readonly ("declare" | "validate" | "generate-in-later-lane")[];
159
+ }
160
+ interface GeneratedFileTrustSecurity {
161
+ readonly classification: "project-instruction" | "executable-extension" | "package-manifest" | "configuration";
162
+ readonly trustBoundary: string;
163
+ readonly projectTrustRequired: boolean;
164
+ readonly executesCode: boolean;
165
+ readonly commandPolicy: "default-deny" | "not-applicable";
166
+ readonly sandboxCapability: SandboxCapabilityState;
167
+ readonly credentialPolicy: "no-credentials-required" | "operator-supplied-only" | "unknown-blocked";
168
+ readonly externalIntegration: "disabled-by-default" | "read-only" | "unknown-blocked";
169
+ readonly destructiveOperationPolicy: "forbidden" | "approval-required" | "not-applicable";
170
+ readonly evidence: EvidenceRecord;
171
+ }
172
+ interface GeneratedFileVersion {
173
+ readonly formatName: string;
174
+ readonly formatVersion: string;
175
+ readonly schemaVersion: "pi-generated-file-manifest/v1";
176
+ readonly adapterCapabilityVersion: "pi-adapter-capability-matrix/v1";
177
+ }
178
+ interface GeneratedFileReadiness {
179
+ readonly state: ReadinessState;
180
+ readonly reason: string;
181
+ }
182
+ interface GeneratedFileFamily {
183
+ readonly familyId: GeneratedFileFamilyId;
184
+ readonly description: string;
185
+ readonly pathPatterns: readonly string[];
186
+ readonly owner: GeneratedFileOwner;
187
+ readonly producedByLane: GeneratedFileProducerLaneId;
188
+ readonly consumedByLanes: readonly GeneratedFileConsumerLaneId[];
189
+ readonly trustSecurity: GeneratedFileTrustSecurity;
190
+ readonly version: GeneratedFileVersion;
191
+ readonly readiness: GeneratedFileReadiness;
192
+ }
193
+ interface GeneratedFileManifest {
194
+ readonly schemaVersion: "pi-generated-file-manifest/v1";
195
+ readonly adapterId: "pi";
196
+ readonly adapterCapabilityVersion: "pi-adapter-capability-matrix/v1";
197
+ readonly producedByLane: "I-14A-pi-adapter-capability-generated-file-manifest";
198
+ readonly families: readonly GeneratedFileFamily[];
199
+ }
200
+ interface DownstreamManifestSummary {
201
+ readonly schemaVersion: "pi-adapter-downstream-summary/v1";
202
+ readonly adapterId: "pi";
203
+ readonly sixSkills: readonly SkillId[];
204
+ readonly generatedFamilies: readonly GeneratedFileFamilyId[];
205
+ readonly manifestReady: boolean;
206
+ readonly createImportReady: false;
207
+ readonly runtimeExecutionClaim: I14ARuntimeExecutionClaim;
208
+ readonly blockedNonPiAdapters: readonly string[];
209
+ }
210
+ declare const validateCapabilityMatrix: (value: unknown) => ValidationResult<AdapterCapabilityMatrix>;
211
+ declare const validateGeneratedFileManifest: (value: unknown) => ValidationResult<GeneratedFileManifest>;
212
+ declare const createDownstreamManifestSummary: (capabilityMatrix: AdapterCapabilityMatrix, generatedFileManifest: GeneratedFileManifest) => DownstreamManifestSummary;
213
+
214
+ export { type AdapterCapability, type AdapterCapabilityMatrix, type AdapterSelectionStatus, type CapabilityFlags, type CapabilitySurface, type CommandInvocationModel, type DownstreamManifestSummary, EVIDENCE_STATES, type EvidenceRecord, type EvidenceState, GENERATED_FILE_CONSUMER_LANE_IDS, GENERATED_FILE_FAMILY_IDS, GENERATED_FILE_PRODUCER_LANE_IDS, type GeneratedFileConsumerLaneId, type GeneratedFileFamily, type GeneratedFileFamilyId, type GeneratedFileManifest, type GeneratedFileOwner, type GeneratedFileProducerLaneId, type GeneratedFileReadiness, type GeneratedFileTrustSecurity, type GeneratedFileVersion, type GeneratedFilesCapability, type I14ARuntimeExecutionClaim, I14A_OUT_OF_SCOPE_RUNTIME_EXECUTION_CLAIMS, I14A_RUNTIME_EXECUTION_CLAIMS, type PackageDistributionCapability, type PlanModeCapability, READINESS_STATES, type ReadinessState, type RealBoundaryWitness, SANDBOX_CAPABILITY_STATES, SKILL_IDS, type SandboxCapabilityState, type SecurityTrustCapability, type SkillCapability, type SkillId, type SkillsCommandsSurface, type SubagentCapability, type ValidationIssue, type ValidationResult, type VersionCompatibility, createDownstreamManifestSummary, validateCapabilityMatrix, validateGeneratedFileManifest };
@@ -0,0 +1,28 @@
1
+ import {
2
+ EVIDENCE_STATES,
3
+ GENERATED_FILE_CONSUMER_LANE_IDS,
4
+ GENERATED_FILE_FAMILY_IDS,
5
+ GENERATED_FILE_PRODUCER_LANE_IDS,
6
+ I14A_OUT_OF_SCOPE_RUNTIME_EXECUTION_CLAIMS,
7
+ I14A_RUNTIME_EXECUTION_CLAIMS,
8
+ READINESS_STATES,
9
+ SANDBOX_CAPABILITY_STATES,
10
+ SKILL_IDS,
11
+ createDownstreamManifestSummary,
12
+ validateCapabilityMatrix,
13
+ validateGeneratedFileManifest
14
+ } from "../chunk-VXZJPOEE.js";
15
+ export {
16
+ EVIDENCE_STATES,
17
+ GENERATED_FILE_CONSUMER_LANE_IDS,
18
+ GENERATED_FILE_FAMILY_IDS,
19
+ GENERATED_FILE_PRODUCER_LANE_IDS,
20
+ I14A_OUT_OF_SCOPE_RUNTIME_EXECUTION_CLAIMS,
21
+ I14A_RUNTIME_EXECUTION_CLAIMS,
22
+ READINESS_STATES,
23
+ SANDBOX_CAPABILITY_STATES,
24
+ SKILL_IDS,
25
+ createDownstreamManifestSummary,
26
+ validateCapabilityMatrix,
27
+ validateGeneratedFileManifest
28
+ };
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@vibe-engineer/adapter-pi",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "description": "Pi harness adapter templates, capability metadata, and generated-file validation for vibe-engineer.",
7
+ "private": false,
8
+ "engines": {
9
+ "node": ">=20.19.0",
10
+ "pnpm": ">=10.33.0"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/ismailsaleekh/vibe-engineer.git"
15
+ },
16
+ "exports": {
17
+ "./capabilities": {
18
+ "types": "./dist/capabilities/index.d.ts",
19
+ "import": "./dist/capabilities/index.js"
20
+ },
21
+ "./generated-file-manifest": {
22
+ "types": "./dist/generated-file-manifest/index.d.ts",
23
+ "import": "./dist/generated-file-manifest/index.js"
24
+ },
25
+ "./create-consumption": {
26
+ "types": "./dist/create-consumption/index.d.ts",
27
+ "import": "./dist/create-consumption/index.js"
28
+ },
29
+ "./schema": {
30
+ "types": "./dist/schema/index.d.ts",
31
+ "import": "./dist/schema/index.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsup",
39
+ "typecheck": "tsc --noEmit --allowImportingTsExtensions --module NodeNext --moduleResolution NodeNext --target ES2022 --lib ES2022 --strict --noImplicitAny --strictNullChecks --strictFunctionTypes --strictBindCallApply --strictPropertyInitialization --noImplicitThis --alwaysStrict --exactOptionalPropertyTypes --noUncheckedIndexedAccess --noImplicitOverride --noImplicitReturns --noPropertyAccessFromIndexSignature --useUnknownInCatchVariables --noFallthroughCasesInSwitch --noUnusedLocals --noUnusedParameters --allowUnreachableCode false --allowUnusedLabels false --isolatedModules --verbatimModuleSyntax --forceConsistentCasingInFileNames --skipLibCheck src/capabilities/index.ts src/generated-file-manifest/index.ts src/create-consumption/index.ts src/schema/index.ts"
40
+ },
41
+ "vibeEngineer": {
42
+ "implementationUnit": "I-14A-pi-adapter-capability-generated-file-manifest",
43
+ "implementationStatus": "v0.1-public-pi-adapter",
44
+ "packageRole": "public-pi-adapter-package",
45
+ "sourceStatus": "v0.1-pi-assets-and-manifest-validated"
46
+ },
47
+ "author": "Ismail <ismailsalikhodjaev@gmail.com>",
48
+ "bugs": {
49
+ "url": "https://github.com/ismailsaleekh/vibe-engineer/issues"
50
+ },
51
+ "homepage": "https://github.com/ismailsaleekh/vibe-engineer#readme",
52
+ "keywords": [
53
+ "ai",
54
+ "agents",
55
+ "typescript",
56
+ "verification",
57
+ "schematics",
58
+ "developer-tools",
59
+ "vibe-engineer"
60
+ ]
61
+ }