@agent-facets/adapter-claude-code 0.2.3 → 0.3.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/dist/index.d.mts +8 -0
- package/dist/index.mjs +6707 -4
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -64,6 +64,14 @@ type AdapterMetadata = Record<string, unknown>;
|
|
|
64
64
|
interface Adapter {
|
|
65
65
|
/** Unique adapter name (e.g., "opencode", "claude-code", "codex") */
|
|
66
66
|
readonly name: string;
|
|
67
|
+
/**
|
|
68
|
+
* When true, this adapter exposes real filesystem I/O (installAsset,
|
|
69
|
+
* readAsset, deleteAsset) and is selectable in the install picker.
|
|
70
|
+
* Absent or false: adapter is hidden from picker (users cannot
|
|
71
|
+
* materialize facets via this adapter). Set to true only when all
|
|
72
|
+
* three I/O methods are implemented and tested.
|
|
73
|
+
*/
|
|
74
|
+
readonly supportsInstall?: boolean;
|
|
67
75
|
/**
|
|
68
76
|
* Validate and enrich per-asset adapter metadata from a facet manifest.
|
|
69
77
|
* Takes raw metadata, validates it against the adapter's schema,
|