@alavida/agentpack
Version:
Compiler-driven lifecycle CLI for source-backed agent skills
14 lines (11 loc) • 417 B
JavaScript
function normalizeRelativePath(pathValue) {
return String(pathValue || '').replaceAll('\\', '/').replace(/^\.\/+/, '');
}
export function isGeneratedPackagePath(pathValue) {
const normalized = normalizeRelativePath(pathValue);
if (!normalized) return false;
return normalized === 'dist'
|| normalized.startsWith('dist/')
|| normalized === '.agentpack'
|| normalized.startsWith('.agentpack/');
}