pbakaus/impeccable · error
concept-seed: --platform must be one of ${COMPOSITION_PLATFO
Error message
concept-seed: --platform must be one of ${COMPOSITION_PLATFORMS.join(', ')} What it means
Thrown when --platform is provided but is not one of COMPOSITION_PLATFORMS: web, ios, android. Platform is a HARD filter: compositions needing hover/pointer do not degrade on a phone, they are excluded, so an unknown platform value would silently filter nothing. null/undefined means eligible everywhere and is allowed.
Source
Thrown at plugin/skills/impeccable/scripts/concept-seed.mjs:330
if (register !== null && register !== 'safer' && register !== 'bolder') {
throw new Error('concept-seed: --register must be safer or bolder');
}
if (register !== null && reroll < 1) {
throw new Error('concept-seed: --register steers a re-roll round; pass --reroll <n> with it');
}
if (register !== null && scope !== 'direction') {
throw new Error('concept-seed: --register applies to direction rounds only');
}
if (mode !== null && !SEED_MODES.has(mode)) {
throw new Error('concept-seed: --mode must be persuade, operate, read, or experience');
}
// Grain needs no mode: how much of the product is in play is independent of
// which register of work it is.
if (grain !== null && !COMPOSITION_GRAINS.includes(grain)) {
throw new Error(`concept-seed: --grain must be one of ${COMPOSITION_GRAINS.join(', ')}`);
}
if (platform !== null && !COMPOSITION_PLATFORMS.includes(platform)) {
throw new Error(`concept-seed: --platform must be one of ${COMPOSITION_PLATFORMS.join(', ')}`);
}
if (!Number.isInteger(candidateCount) || candidateCount < 5 || candidateCount > 7) {
throw new Error('concept-seed: --candidate-count must be an integer from 5 to 7');
}
const unit = (salt) => {
const h = crypto.createHash('sha256').update(`${scope}:${salt}:${key}`).digest();
return h.readUInt32BE(0) / 0xffffffff;
};
const indexSalt = reroll === 0 ? 'index' : `index:reroll-${reroll}`;
const buildIndex = 3 + Math.floor(unit(indexSalt) * (candidateCount - 2)); // 3..candidateCount
// Surface scope deals a hand of three grounded structures: one card is not
// a choice, and the full ranked list would hand selection back to the
// model's taste. The dice pick all three; the primary index leads. The
// no-lineup rule stays direction-only, where it was written for worlds.
const dealtIndices = [buildIndex];
for (let draw = 0; scope === 'surface' && dealtIndices.length < Math.min(3, candidateCount); draw += 1) {
const idx = 1 + Math.floor(unit(`${indexSalt}:deal-${draw}`) * candidateCount);
if (!dealtIndices.includes(idx)) dealtIndices.push(idx);View on GitHub (pinned to d14711ae3d)
Solutions
- Use exactly one of: --platform web, --platform ios, --platform android.
- Omit --platform to keep compositions eligible on all targets.
Example fix
# before $ node concept-seed.mjs --scope surface --platform mobile ... # after $ node concept-seed.mjs --scope surface --platform web ...
Defensive patterns
Strategy: validation
Validate before calling
const COMPOSITION_PLATFORMS = ['web', 'ios', 'android'];
if (platform != null && !COMPOSITION_PLATFORMS.includes(platform)) {
throw new Error(`--platform must be one of: ${COMPOSITION_PLATFORMS.join(', ')}`);
} Type guard
function isValidPlatform(value) {
return value == null || ['web','ios','android'].includes(value);
} Try / catch
try {
await seedConcepts({ scope, platform });
} catch (err) {
if (/--platform must be one of/.test(err.message)) {
console.error('Use --platform web|ios|android, or omit it.');
} else throw err;
} Prevention
- Parse --platform as an enum; reject 'desktop'/'mobile' at the CLI.
- Note in docs that platform is a hard filter, not a degradation hint.
- Share the COMPOSITION_PLATFORMS constant across CLI, seeder, and validator.
When it happens
Trigger: Passing --platform with a value like 'desktop', 'mobile', 'tablet', 'mac', 'windows' — none are valid. The check is platform !== null && !COMPOSITION_PLATFORMS.includes(platform).
Common situations: Using 'desktop' or 'mobile' (the skill's project-level platform axis uses 'adaptive', but the seeder's platform filter is web/ios/android only); CLI typo.
Related errors
- concept-seed: --scope must be direction or surface
- concept-seed: --reroll must be a non-negative integer
- concept-seed: --register must be safer or bolder
- concept-seed: --register steers a re-roll round; pass --rero
- concept-seed: --register applies to direction rounds only
AI-assisted analysis of pbakaus/impeccable@d14711ae3d (2026-08-13).
Data as JSON: /api/errors/632bb093b7df9fd6.
Report an issue: GitHub.