Files
agentic-dev/packages/core-eslint/rules/required-cores-installed.js
Danijel Martinek f77e6ea881 chore(template): clean-slate template snapshot from bb4a0c7
Curated, product-agnostic snapshot of the post-story-04 tree: demo
content deleted, auth-only reference feature, web-next shell, all gates
green. Product-specific docs, ADRs 027-029, PRDs/epics/archive, editor
library traces, and product naming are curated out; generic template
repairs (coverage provider devDeps, root test:coverage script, live
lint fixes, root-only release-please) are kept. See TEMPLATE.md for
provenance, curation list, and usage.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
2026-07-12 20:40:54 +02:00

72 lines
2.2 KiB
JavaScript

import fs from "node:fs";
import path from "node:path";
import { readManifestSource } from "./_manifest-source.js";
import { readWorkspacePackages } from "./_workspace.js";
/**
* Check whether `packages/core-<name>` exists under any of the workspace
* globs. The glob set is small and predictable (e.g. ["apps/*", "packages/*"]);
* we simulate matching by checking each glob's directory portion + verifying
* `core-<name>` exists in that directory.
*/
function coreExistsInWorkspace(coreName, repoRoot, packageGlobs) {
for (const glob of packageGlobs) {
const slashStar = glob.endsWith("/*") ? glob.slice(0, -2) : null;
if (!slashStar) continue;
const candidate = path.join(repoRoot, slashStar, `core-${coreName}`);
if (fs.existsSync(candidate)) return true;
}
return false;
}
/** @type {import("eslint").Rule.RuleModule} */
export default {
meta: {
type: "problem",
docs: {
description:
"Cores declared in a feature.manifest.ts's requiredCores must exist as core-<name> packages within a workspace glob.",
},
schema: [
{
type: "object",
properties: {
repoRoot: { type: "string" },
},
additionalProperties: false,
},
],
messages: {
coreNotInstalled:
'Manifest declares requiredCores: [..., "{{core}}", ...] but `core-{{core}}` is not present in any workspace glob. Run `pnpm turbo gen core-package {{core}}` or drop the entry.',
},
},
create(context) {
const opts = context.options[0] ?? {};
const repoRoot = opts.repoRoot ?? context.cwd ?? process.cwd();
return {
Program(node) {
const filename = context.filename;
if (
!filename.endsWith("/feature.manifest.ts") &&
!filename.endsWith("\\feature.manifest.ts")
) {
return;
}
const manifest = readManifestSource(filename);
if (!manifest) return;
const globs = readWorkspacePackages(repoRoot);
for (const core of manifest.requiredCores) {
if (!coreExistsInWorkspace(core, repoRoot, globs)) {
context.report({
node,
messageId: "coreNotInstalled",
data: { core },
});
}
}
},
};
},
};