Plugin cloning via menu (#6433)

* Add plugin cloning via menu

* Split plugin commands by action

* Keep plugin enablement in action commands

* Remove unused plugin edit command

* Simplify plugin rescan arguments

* Assume Omarchy shell is running for plugin commands

* Remove plugin compatibility dispatcher

* Flatten plugin clone command

* Keep only shared plugin helpers

* Remove plugin rescan wrapper

* Keep plugin commands self-contained

* Simplify plugin clone lifecycle
This commit is contained in:
David Heinemeier Hansson
2026-07-29 21:34:47 -04:00
committed by GitHub
parent fb564e3ac1
commit f8835df644
28 changed files with 1238 additions and 1012 deletions
+27
View File
@@ -156,6 +156,33 @@ for (const manifestPath of manifests) {
if (relativePath.endsWith('.manifest.json')) {
check(JSON.stringify(manifest.kinds) === JSON.stringify(['bar-widget']), `${manifest.id} sibling manifest must be a bar widget`)
}
const clonePaths = manifest.omarchy?.clonePaths
if (clonePaths !== undefined) {
check(Array.isArray(clonePaths), `${manifest.id} omarchy.clonePaths must be an array`)
const cloneTargets = new Set()
for (const clonePath of Array.isArray(clonePaths) ? clonePaths : []) {
const valid = isPlainObject(clonePath)
&& typeof clonePath.source === 'string'
&& /^[A-Za-z0-9_./-]+$/.test(clonePath.source)
&& typeof clonePath.target === 'string'
&& /^[A-Za-z0-9_./-]+$/.test(clonePath.target)
&& !clonePath.target.startsWith('/')
&& !clonePath.target.includes('..')
check(
valid,
`${manifest.id} clone paths must have safe source and target paths`
)
if (valid) {
check(
fs.existsSync(path.resolve(path.dirname(manifestPath), clonePath.source)),
`${manifest.id} clone source ${clonePath.source} must exist`
)
check(!cloneTargets.has(clonePath.target), `${manifest.id} clone target ${clonePath.target} must be unique`)
cloneTargets.add(clonePath.target)
}
}
}
}
const byId = Object.fromEntries(manifests.map(manifestPath => {