chore(installer): rename wokitoki user-level skill to mkd - #21
Merged
Conversation
The agentic-user-skills repo renamed wokitoki (toki) to mkd (Make Decision): same capabilities plus a decision-deck mode, non-blocking copy-JSON flow by default, and a no-install run model. The installer only needs the new skill name.
saiotest
added a commit
that referenced
this pull request
Aug 21, 2026
The CI Framework Validation check loads playwright.config under Node, which pulls config/variables.ts and with it this resolver — where import.meta.dir (a Bun-only API) is undefined and join(undefined) throws, failing the check on every PR. It never surfaced on main because the workflow only runs on pull requests, and PR #21 merged through it because the check is not required. The repo root now falls back to the portable URL form (dirname(fileURLToPath(import.meta.url))) when import.meta.dir is absent. Verified by loading the module directly under Node v26 with type stripping — it now resolves; every other import.meta.dir use in the repo sits in bun-invoked entrypoints outside the Playwright config load chain. Claude-Session: https://claude.ai/code/session_013F6f3yR9tDcykvKJuHgiJP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The agentic-user-skills repo renamed
wokitoki(toki) tomkd(Make Decision) — same capabilities (questions, report reactions, answerable tables) fused into a Catch-Up-style decision deck, with a non-blocking copy-JSON flow by default and a no-install run model (bun <skill-dir>/cli/index.ts).This installer only needs the skill name swapped in
USER_LEVEL_SKILLS(plus the entry comment).Merge after upex-galaxy/agentic-user-skills#1 lands on main, so
bunx skills add --global … mkdresolves.