Tuckmark Templates Source

Exercise the Tuckmark template management workflow through the active source checkout without accidentally invoking a globally installed release CLI.

ivanli-cn 5184070 2 files · 1.4 KB Updated

File contents

Tuckmark Templates Source

Use this skill inside a Tuckmark source checkout. After resolving REPO_ROOT below, read and follow $REPO_ROOT/skills/tuckmark-templates/SKILL.md first. If it is unavailable, stop.

Source Guard

REPO_ROOT="$(git rev-parse --show-toplevel)"
test -f "$REPO_ROOT/packages/cli/src/index.ts"

Never substitute a globally installed tuckmark binary while validating the active worktree.

Source Executor

Replace each leading tuckmark command in the main skill with:

bun tsx --tsconfig "$REPO_ROOT/packages/cli/tsconfig.typecheck.json" "$REPO_ROOT/packages/cli/src/index.ts"

Keep the active worktree's DEVD isolation contract. Do not target formal user data while testing source behavior.

Focused Checks

  • bun run --filter @tuckmark/core test
  • bun run --filter @tuckmark/server test
  • bun run --filter @tuckmark/cli test
  • Matching package typechecks

ivanli-cn/tuckmark/tree/main/.agents/skills/tuckmark-templates-source commit 5184070e35

Frequently asked questions

npx skillmds@latest add ivanli-cn/tuckmark-templates-source