restore: skills

This commit is contained in:
oboard
2026-03-31 20:11:19 +08:00
parent 33c1de7c75
commit 0f21b48891
38 changed files with 1756 additions and 78 deletions

View File

@@ -1,11 +1,19 @@
const agentsPlatform = {
name: 'agents-platform',
type: 'local',
description: 'Unavailable in restored development build.',
description:
'Reserved internal command. This restored build keeps the command visible but does not include the original agents platform backend.',
supportsNonInteractive: true,
load: async () => ({
async call() {
return { type: 'skip' as const }
return {
type: 'text' as const,
value:
'agents-platform is not included in this restored workspace.\n\n' +
'The command shell is present so callers fail cleanly, but the ' +
'internal backend that powers platform-managed agents was not ' +
'recoverable from source maps.',
}
},
}),
}