@hasna/skills 0.1.57 → 0.1.59
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/README.md +53 -50
- package/bin/index.js +3640 -3188
- package/bin/mcp.js +2621 -2428
- package/bin/migrate.js +70 -0
- package/bin/server.js +33666 -0
- package/bin/worker.js +30939 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3725 -3388
- package/dist/lib/config.d.ts +2 -2
- package/dist/lib/content-scan.d.ts +69 -0
- package/dist/lib/discovery.d.ts +1 -0
- package/dist/lib/hosted-availability.d.ts +2 -0
- package/dist/lib/packlist.d.ts +13 -0
- package/dist/lib/portable-skills.d.ts +46 -1
- package/dist/lib/project-state.d.ts +4 -1
- package/dist/lib/public-boundary.d.ts +31 -0
- package/dist/lib/registry-types.d.ts +20 -1
- package/dist/lib/remote-registry.d.ts +2 -2
- package/dist/lib/skill-validation.d.ts +5 -1
- package/dist/lib/skillinfo.d.ts +15 -0
- package/dist/storage.js +18 -6
- package/docs/skill-standard.md +34 -4
- package/migrations/0001_open_skills_self_hosted.sql +129 -0
- package/package.json +11 -3
- package/skills/browse/README.md +1 -1
- package/skills/browse/SKILL.md +1 -1
- package/skills/deepresearch/README.md +1 -1
- package/skills/deepresearch/SKILL.md +1 -1
- package/skills/image/README.md +1 -1
- package/skills/tmux-session/SKILL.md +2 -2
- package/skills/transcript/SKILL.md +1 -1
- package/skills/webcrawling/README.md +1 -1
- package/skills/apidocs/.claude/settings.json +0 -5
|
@@ -12,7 +12,7 @@ worker orchestration, and credentials stay server-side.
|
|
|
12
12
|
## Usage
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
skills setup --mode hosted
|
|
15
|
+
skills setup --mode self-hosted
|
|
16
16
|
skills auth login
|
|
17
17
|
skills run deepresearch "Best practices for building production RAG systems" --depth normal
|
|
18
18
|
skills runs status <run-id>
|
package/skills/image/README.md
CHANGED
|
@@ -11,8 +11,8 @@ Use this skill when you need to add a window and session to an existing group, o
|
|
|
11
11
|
## Workspace Layout
|
|
12
12
|
|
|
13
13
|
```text
|
|
14
|
-
~/workspace/ Linux
|
|
15
|
-
~/Workspace/ macOS
|
|
14
|
+
~/workspace/ Linux hosts — always lowercase
|
|
15
|
+
~/Workspace/ macOS hosts — always capital W
|
|
16
16
|
|
|
17
17
|
[workspace]/
|
|
18
18
|
└── [division]/
|
|
@@ -11,7 +11,7 @@ Create transcripts from local audio/video files or media URLs. Use this skill wh
|
|
|
11
11
|
|
|
12
12
|
- Use the hosted Skills runtime when the user explicitly runs `skills run transcript`, needs remote execution, or has only `SKILLS_API_KEY` configured.
|
|
13
13
|
- Use local `iapp-transcriber` when you are on this machine and need direct access to local files, YouTube/Vimeo/generic `yt-dlp` sources, transcript DB records, MCP tools, comments, exports, or OpenLoops follow-up workflows.
|
|
14
|
-
- The local command is `transcriber` when installed, or `bun run src/cli/index.ts` from
|
|
14
|
+
- The local command is `transcriber` when installed, or `bun run src/cli/index.ts` from your `~/Workspace/hasnaxyz/internalapp/iapp-transcriber` checkout.
|
|
15
15
|
|
|
16
16
|
## Hosted Usage
|
|
17
17
|
|