@pome-sh/checks 0.3.7 → 0.3.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @pome-sh/checks
2
2
 
3
+ ## 0.3.9 — 2026-08-27
4
+
5
+ **Prose only.** Two Linear declared-check descriptions (`linear.issue-has-label`,
6
+ `linear.issue-assignee`) stop describing their own semantics by reference to what
7
+ a retired rule used to do. Behavior, params, templates and ids are unchanged.
8
+ These strings are published: pome-cloud renders its authoring reference from
9
+ them, so the docs page changes when it bumps this pin.
10
+
11
+ ## 0.3.8 — 2026-08-25
12
+
13
+ **No consumer-visible change.** Added `// file-size:` header comments to twin
14
+ modules that were previously exempted from the file-size lint by name, and removed
15
+ four header comments that no longer applied. Prose only — no export, schema, tool,
16
+ route, status code or response body moved.
17
+
3
18
  ## 0.3.7 — 2026-08-25
4
19
 
5
20
  **No consumer-visible change.** Comment cleanup in `scripts/bundle-declarations.mjs`,
@@ -364,7 +364,7 @@ var issueState = defineCheck({
364
364
  });
365
365
  var issueHasLabel = defineCheck({
366
366
  id: "linear.issue-has-label",
367
- description: "Resolves the issue, joins its `labelIds` to the workspace label catalog, and asserts the named label is among them \u2014 case-insensitively, as the legacy rule's comparison was. The join is the point: this export carries label IDS where the seed writes names and twin-github writes objects, so one concept has three shapes and only this one is exported. A label id with no catalog row is a partial export and SKIPS rather than failing.",
367
+ description: "Resolves the issue, joins its `labelIds` to the workspace label catalog, and asserts the named label is among them, case-insensitively. The join is the point: this export carries label IDS where the seed writes names and twin-github writes objects, so one concept has three shapes and only this one is exported. A label id with no catalog row is a partial export and SKIPS rather than failing.",
368
368
  template: 'Issue "{title}" in `{team}` has label "{label}"',
369
369
  params: { title: issueTitle, team: teamKey, label: labelName },
370
370
  substrate: "final",
@@ -430,7 +430,7 @@ var issueEstimate = defineCheck({
430
430
  });
431
431
  var issueAssignee = defineCheck({
432
432
  id: "linear.issue-assignee",
433
- description: "Resolves the issue, then its assignee, and matches the given reference against that user's email, name OR displayName \u2014 every spelling the legacy rule accepted. An UNASSIGNED issue is a real FAIL. Declared with no shipped corpus user, carrying a legacy capability forward. This is the check whose `subject` earns its keep: an email reference is destroyed by a team's `PII_PATTERNS`, which the twin's own redactor has no equivalent of, so without the declaration the criterion would silently be unable to fire.",
433
+ description: "Resolves the issue, then its assignee, and matches the given reference against that user's email, name OR displayName. An UNASSIGNED issue is a real FAIL. Declared with no shipped corpus user. This is the check whose `subject` earns its keep: an email reference is destroyed by a team's `PII_PATTERNS`, which the twin's own redactor has no equivalent of, so without the declaration the criterion would silently be unable to fire.",
434
434
  template: 'Issue "{title}" in `{team}` is assigned to `{user}`',
435
435
  params: { title: issueTitle, team: teamKey, user: userRef },
436
436
  substrate: "final",
package/dist/index.js CHANGED
@@ -3,8 +3,8 @@ import { GITHUB_CHECKS } from './chunk-6AXGU7BV.js';
3
3
  export { GITHUB_CHECKS, defaultSeedState as defaultGitHubSeed, seedSchema as githubSeedSchema, parseSeed as parseGitHubSeed } from './chunk-6AXGU7BV.js';
4
4
  import { GMAIL_CHECKS } from './chunk-KTTJCEDH.js';
5
5
  export { GMAIL_CHECKS, defaultSeedState as defaultGmailSeed, gmailSeedSchema, parseSeed as parseGmailSeed } from './chunk-KTTJCEDH.js';
6
- import { LINEAR_CHECKS } from './chunk-THOSO63W.js';
7
- export { LINEAR_CHECKS, defaultSeedState as defaultLinearSeed, linearSeedSchema, parseSeed as parseLinearSeed } from './chunk-THOSO63W.js';
6
+ import { LINEAR_CHECKS } from './chunk-CDY7HEPC.js';
7
+ export { LINEAR_CHECKS, defaultSeedState as defaultLinearSeed, linearSeedSchema, parseSeed as parseLinearSeed } from './chunk-CDY7HEPC.js';
8
8
  import { SLACK_CHECKS } from './chunk-OEGRXQ6W.js';
9
9
  export { SLACK_CHECKS, defaultSeedState as defaultSlackSeed, parseSeed as parseSlackSeed, seedSchema as slackSeedSchema } from './chunk-OEGRXQ6W.js';
10
10
  import { STRIPE_CHECKS } from './chunk-XOUAZPNB.js';
package/dist/linear.js CHANGED
@@ -1,2 +1,2 @@
1
- export { LINEAR_CHECKS, defaultSeedState, linearSeedSchema, parseSeed } from './chunk-THOSO63W.js';
1
+ export { LINEAR_CHECKS, defaultSeedState, linearSeedSchema, parseSeed } from './chunk-CDY7HEPC.js';
2
2
  import './chunk-W2JNYULF.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/checks",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "description": "Pome's grading vocabulary — the check declarations, seed schemas and default seeds of all five digital twins, plus the check DSL they are written in. Declarations only: no twin server, no database, no routes, no tools.",
5
5
  "private": false,
6
6
  "type": "module",