ソース情報
- リポジトリ
- iii-hq/workers
- ソースの最終更新活動
- 2026年8月3日 19:10
- 検出された SKILL.md の言語
- 英語
- スター
- 100
- フォーク
- 19
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/iii-hq/workers --skill openwikiコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Build, structure, and validate polished responsive worker UI (React pages, function-trigger and trigger-activity renderers, configuration forms, and stylesheets) injected into the running iii console. Use when adding or changing a worker's console UI, especially when it must match the visual quality of database, console functions/triggers, iii-directory, and state; retain the shared header and visual system; work in narrow/mobile-sized panes; preserve state safely; hot reload; and ship without rebuilding the console.
Discovery entry point for the engine — search the live function catalog, read the skills, system prompts, and agent profiles that installed workers ship off local disk, browse the public iii workers registry over HTTP, and install new worker bundles. Reach for it first to find out which workers exist and how to call them.
Connect this engine to another iii engine over a long-lived WebSocket so functions call across the boundary. Wire stable ids with `forward:`/`expose:`; `bridge.invoke` is the ad-hoc escape hatch.
SOC 職業分類に基づく
SKILL.md を表示中
| name | openwiki |
| description | Generate and browse a source-grounded markdown wiki for a git repository. |
Builds and maintains a categorized, interlinked markdown wiki for a code
repository. A model reads the source, plans an outline, writes one page per
topic with file citations, and refreshes pages from git diffs. Wiki content is
stored in state; a browser UI and JSON API are served under /openwiki.
path:line citations.router::complete;
the provider and credential live in the llm-router config, not here.openwiki::generate { repo_url, model? } — start a wiki build; returns
{ wiki_id, status }. Poll openwiki::status.openwiki::status { id } — generation progress.openwiki::wikis — list generated wikis.openwiki::wiki { id } — wiki metadata.openwiki::pages { id } — page index.openwiki::page { id, slug } — a page's markdown and metadata.openwiki::search { id, q } — keyword search over a wiki.openwiki::refresh { id } — git-pull and regenerate changed pages.openwiki::set-schedule { id, schedule } — set a wiki's auto-refresh cadence
(off | 3h | 6h | 12h | daily | weekly | a cron string).openwiki::delete { id } — delete a wiki and all its pages.The same operations are exposed over HTTP under /openwiki/api/*, and
/openwiki serves the browser UI.
cron trigger; when one
fires, openwiki::cron::refresh-due runs an incremental refresh of every wiki
whose interval has elapsed. Set the cadence per wiki (openwiki::set-schedule
or the UI control); the config worker's refresh_default is the default for new
wikis. Nothing is scheduled by default (off).openwiki::on-config-change reloads the default model, page-writer concurrency,
and default refresh cadence when the openwiki configuration entry changes.