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.
Files changed (3) hide show
  1. package/cli.ts +1 -1
  2. package/package.json +1 -1
  3. 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.0';
28
+ const VERSION = '0.8.1';
29
29
 
30
30
  // --- Supabase ---
31
31
  const SUPABASE_URL = 'https://mjnfqagwuewhgwbtrdgs.supabase.co';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oathbound",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Install verified Claude Code skills from the Oath Bound registry",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Josh Anderson",
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.meta as Record<string, unknown> | undefined)?.oathbound as Record<string, unknown> | undefined;
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)