Skip to content

Commit 62fe595

Browse files
committed
chore: rename schema package for npm
1 parent 41dd6de commit 62fe595

File tree

21 files changed

+30
-31
lines changed

21 files changed

+30
-31
lines changed

bun.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

convex/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApiRoutes } from '@clawdhub/schema'
1+
import { ApiRoutes } from 'clawdhub-schema'
22
import { httpRouter } from 'convex/server'
33
import { auth } from './auth'
44
import { downloadZip } from './downloads'

convex/httpApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CliPublishRequestSchema, parseArk } from '@clawdhub/schema'
1+
import { CliPublishRequestSchema, parseArk } from 'clawdhub-schema'
22
import { api, internal } from './_generated/api'
33
import type { Id } from './_generated/dataModel'
44
import { httpAction } from './_generated/server'

convex/lib/skills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
parseArk,
66
type SkillInstallSpec,
77
TEXT_FILE_EXTENSION_SET,
8-
} from '@clawdhub/schema'
8+
} from 'clawdhub-schema'
99

1010
export type ParsedSkillFrontmatter = Record<string, string>
1111
export type { ClawdisSkillMetadata, SkillInstallSpec }

e2e/clawdhub.e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
ApiRoutes,
1010
ApiSearchResponseSchema,
1111
parseArk,
12-
} from '@clawdhub/schema'
12+
} from 'clawdhub-schema'
1313
import { describe, expect, it } from 'vitest'
1414
import { readGlobalConfig } from '../packages/clawdhub/src/config'
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"dependencies": {
2323
"@auth/core": "^0.41.1",
24-
"@clawdhub/schema": "^0.1.0",
24+
"clawdhub-schema": "^0.0.1",
2525
"@convex-dev/auth": "^0.0.90",
2626
"@fontsource/bricolage-grotesque": "^5.2.10",
2727
"@fontsource/ibm-plex-mono": "^5.2.7",

packages/clawdhub/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clawdhub",
3-
"version": "0.1.0",
3+
"version": "0.0.1",
44
"description": "ClawdHub CLI — install, update, search, and publish agent skills.",
55
"license": "MIT",
66
"type": "module",
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"@clack/prompts": "^0.11.0",
23-
"@clawdhub/schema": "^0.1.0",
23+
"clawdhub-schema": "^0.0.1",
2424
"commander": "^14.0.2",
2525
"fflate": "^0.8.2",
2626
"ignore": "^7.0.5",

packages/clawdhub/src/cli/commands/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApiCliWhoamiResponseSchema, ApiRoutes } from '@clawdhub/schema'
1+
import { ApiCliWhoamiResponseSchema, ApiRoutes } from 'clawdhub-schema'
22
import { buildCliAuthUrl, startLoopbackAuthServer } from '../../browserAuth.js'
33
import { readGlobalConfig, writeGlobalConfig } from '../../config.js'
44
import { discoverRegistryFromSite } from '../../discovery.js'

packages/clawdhub/src/cli/commands/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
ApiUploadFileResponseSchema,
99
CliPublishRequestSchema,
1010
parseArk,
11-
} from '@clawdhub/schema'
11+
} from 'clawdhub-schema'
1212
import semver from 'semver'
1313
import { readGlobalConfig } from '../../config.js'
1414
import { apiRequest } from '../../http.js'

packages/clawdhub/src/cli/commands/skills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ApiSearchResponseSchema,
66
ApiSkillMetaResponseSchema,
77
ApiSkillResolveResponseSchema,
8-
} from '@clawdhub/schema'
8+
} from 'clawdhub-schema'
99
import semver from 'semver'
1010
import { apiRequest, downloadZip } from '../../http.js'
1111
import {

0 commit comments

Comments
 (0)