oathbound 0.8.0 → 0.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/cli.ts +1 -1
- package/package.json +1 -1
- package/push.ts +1 -1
package/cli.ts
CHANGED
|
@@ -25,7 +25,7 @@ export { stripJsoncComments, writeOathboundConfig, mergeClaudeSettings, type Mer
|
|
|
25
25
|
export { isNewer } from './update';
|
|
26
26
|
export { installDevDependency, type InstallResult, setup, addPrepareScript, type PrepareResult };
|
|
27
27
|
|
|
28
|
-
const VERSION = '0.8.
|
|
28
|
+
const VERSION = '0.8.1';
|
|
29
29
|
|
|
30
30
|
// --- Supabase ---
|
|
31
31
|
const SUPABASE_URL = 'https://mjnfqagwuewhgwbtrdgs.supabase.co';
|
package/package.json
CHANGED
package/push.ts
CHANGED
|
@@ -37,7 +37,7 @@ export async function push(pathArg?: string): Promise<void> {
|
|
|
37
37
|
if (!description) fail('SKILL.md frontmatter missing: description');
|
|
38
38
|
if (!license) fail('SKILL.md frontmatter missing: license');
|
|
39
39
|
|
|
40
|
-
const oathboundMeta = (meta.
|
|
40
|
+
const oathboundMeta = (meta.metadata as Record<string, unknown> | undefined)?.oathbound as Record<string, unknown> | undefined;
|
|
41
41
|
const originalAuthor = String(oathboundMeta?.['original-author'] ?? '');
|
|
42
42
|
|
|
43
43
|
// Build files array with root dir prefix (API expects rootDir/path format)
|