docs(linkedin-studio): D11 GOVERNANCE.md consolidation + VERIFY-MISSING test command

D11: remove the local GOVERNANCE.md copy (byte-identical to repo-standard's
canonical, verified md5 736fc9d6a...), repoint both README links (line 7 +
table row 255) to the absolute canonical URL, same commit per org-ops's
LINK-INTERNAL-MISSING guidance.

VERIFY-MISSING: document the actual working test command in a README
fenced block. A bare `node --test` also auto-discovers the .test.ts files
under scripts/*/tests/ and fails on them (no tsx loader at root) — scoped
the documented command to the node:test suite (289 tests, 63 suites, all
passing) and noted the TypeScript sub-packages run their own npm test.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Lr3gjZmAuV1CmYu8UygWUt
This commit is contained in:
Kjell Tore Guttormsen 2026-08-13 20:26:28 +02:00
commit 978601447f
2 changed files with 10 additions and 133 deletions

View file

@ -4,7 +4,7 @@ Full-spectrum LinkedIn content engine for Claude Code: feed posts, carousels, vi
> Turn your expertise into LinkedIn authority — without the blank page, the guesswork, or the generic AI slop.
> **Solo-maintained, fork-and-own.** This plugin is a starting point, not a vendor product. Issues are welcome as signals; pull requests are not accepted. See [GOVERNANCE.md](GOVERNANCE.md) for the full model and what upstream provides.
> **Solo-maintained, fork-and-own.** This plugin is a starting point, not a vendor product. Issues are welcome as signals; pull requests are not accepted. See [GOVERNANCE.md](https://git.fromaitochitta.com/open/repo-standard/src/branch/main/GOVERNANCE.md) for the full model and what upstream provides.
*AI-generated: all code produced by Claude Code through dialog-driven development, human-directed and reviewed before commit. Output ownership rests with the maintainer under Anthropic's Consumer Terms §4.*
@ -252,10 +252,18 @@ The README is the front door. The detail lives alongside it:
| Architecture — agent pipeline & selection, 9 hooks, 6 skills, personalization scoring, configuration, analytics internals | [CLAUDE.md](CLAUDE.md) |
| The 28-document knowledge base (algorithm signals, angles, frameworks, strategy guides) | [`references/`](references/) |
| Full version history and known gaps | [CHANGELOG.md](CHANGELOG.md) |
| Maintenance model, fork-and-own, what upstream provides | [GOVERNANCE.md](GOVERNANCE.md) |
| Maintenance model, fork-and-own, what upstream provides | [GOVERNANCE.md](https://git.fromaitochitta.com/open/repo-standard/src/branch/main/GOVERNANCE.md) |
---
## Testing
```
node --test hooks/scripts/__tests__/*.test.mjs render/__tests__/*.test.mjs tests/*.test.mjs
```
Runs the `node:test`-based suite (289 tests, 63 suites). A bare `node --test` also picks up the `.test.ts` files under `scripts/*/tests/` and fails on them — those are separate TypeScript sub-packages (analytics, editions, specifics-bank, contract-gate, trends, brain), each with its own `npm install && npm test`.
## Changelog
See [CHANGELOG.md](CHANGELOG.md).