From f1a09febbffa162c6b3f9fd14b5b7cfefdbf157e Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 8 Jan 2026 00:07:42 +0100 Subject: [PATCH] docs: add /landpr prompt --- docs/slash-commands/landpr.md | 3 +++ scripts/docs-list.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 docs/slash-commands/landpr.md diff --git a/docs/slash-commands/landpr.md b/docs/slash-commands/landpr.md new file mode 100644 index 000000000..14b5ca929 --- /dev/null +++ b/docs/slash-commands/landpr.md @@ -0,0 +1,3 @@ +# /landpr + +Land PR: rebase onto temp branch from main, fix+tests+changelog, run pnpm lint && pnpm build && pnpm test before commit, commit via committer, fast‑forward main, push, close PR, delete temp branch. diff --git a/scripts/docs-list.ts b/scripts/docs-list.ts index 7fad2594a..8b81b5459 100755 --- a/scripts/docs-list.ts +++ b/scripts/docs-list.ts @@ -12,7 +12,7 @@ process.stdout.on('error', (error) => { const DOCS_DIR = join(process.cwd(), 'docs'); -const EXCLUDED_DIRS = new Set(['archive', 'research']); +const EXCLUDED_DIRS = new Set(['archive', 'research', 'slash-commands']); function compactStrings(values: unknown[]): string[] { const result: string[] = [];