get-tbd 0.1.28 → 0.1.29
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/dist/bin.mjs +3 -3
- package/dist/bin.mjs.map +1 -1
- package/dist/cli.mjs +3 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/docs/SKILL.md +0 -4
- package/dist/docs/guidelines/bun-monorepo-patterns.md +92 -289
- package/dist/docs/guidelines/cli-agent-skill-patterns.md +706 -1240
- package/dist/docs/guidelines/pnpm-monorepo-patterns.md +104 -321
- package/dist/docs/guidelines/supply-chain-hardening.md +237 -0
- package/dist/docs/shortcuts/standard/new-validation-plan.md +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{src-D2xEmH4L.mjs → src-CJyVkC3V.mjs} +2 -2
- package/dist/{src-D2xEmH4L.mjs.map → src-CJyVkC3V.mjs.map} +1 -1
- package/dist/tbd +3 -3
- package/package.json +1 -1
package/dist/bin.mjs
CHANGED
|
@@ -14067,7 +14067,7 @@ function serializeIssue(issue) {
|
|
|
14067
14067
|
* Package version, derived from git at build time.
|
|
14068
14068
|
* Format: X.Y.Z for releases, X.Y.Z-dev.N.hash for dev builds.
|
|
14069
14069
|
*/
|
|
14070
|
-
const VERSION$1 = "0.1.
|
|
14070
|
+
const VERSION$1 = "0.1.29";
|
|
14071
14071
|
|
|
14072
14072
|
//#endregion
|
|
14073
14073
|
//#region src/cli/lib/version.ts
|
|
@@ -107283,7 +107283,7 @@ async function loadSkillContent() {
|
|
|
107283
107283
|
const docsDir = join(dirname(fileURLToPath(import.meta.url)), "..", "..", "..", "docs");
|
|
107284
107284
|
const headerPath = join(docsDir, "install", "claude-header.md");
|
|
107285
107285
|
const skillPath = join(docsDir, "shortcuts", "system", "skill-baseline.md");
|
|
107286
|
-
return await readFile(headerPath, "utf-8") + await readFile(skillPath, "utf-8");
|
|
107286
|
+
return await readFile(headerPath, "utf-8") + stripFrontmatter(await readFile(skillPath, "utf-8"));
|
|
107287
107287
|
} catch {
|
|
107288
107288
|
throw new Error("SKILL.md content file not found. Please rebuild the CLI.");
|
|
107289
107289
|
}
|
|
@@ -107566,7 +107566,7 @@ var SkillHandler = class extends BaseCommand {
|
|
|
107566
107566
|
*/
|
|
107567
107567
|
async composeFullSkill() {
|
|
107568
107568
|
const header = await loadDocContent("install/claude-header.md");
|
|
107569
|
-
const baseSkill = await loadDocContent("shortcuts/system/skill-baseline.md");
|
|
107569
|
+
const baseSkill = stripFrontmatter(await loadDocContent("shortcuts/system/skill-baseline.md"));
|
|
107570
107570
|
const directory = await this.getShortcutDirectory();
|
|
107571
107571
|
let result = header + baseSkill;
|
|
107572
107572
|
if (directory) result = result.trimEnd() + "\n\n" + directory;
|