agentera 3.0.0-dev.2 → 3.0.0-dev.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +84 -6
- package/bundle/.agentera-npx-bundle.json +1 -1
- package/bundle/.codex-plugin/plugin.json +92 -0
- package/bundle/.cursor/agents/agentera.md +7 -0
- package/bundle/.cursor/hooks.json +32 -0
- package/bundle/.cursor-plugin/plugin.json +34 -0
- package/bundle/.github/hooks/postToolUse.json +9 -0
- package/bundle/.github/hooks/preToolUse.json +8 -0
- package/bundle/.github/hooks/sessionEnd.json +8 -0
- package/bundle/.github/hooks/sessionStart.json +8 -0
- package/bundle/.github/plugin/plugin.json +7 -0
- package/bundle/.opencode/agents/agentera.md +12 -0
- package/bundle/.opencode/commands/agentera.md +5 -0
- package/bundle/.opencode/package.json +31 -0
- package/bundle/.opencode/plugins/agentera.js +820 -0
- package/bundle/CHANGELOG.md +1101 -0
- package/bundle/DESIGN.md +233 -0
- package/bundle/LICENSE +201 -0
- package/bundle/README.md +158 -0
- package/bundle/UPGRADE.md +265 -0
- package/bundle/agents/openai.yaml +87 -0
- package/bundle/extract-corpus-parity.json +21 -0
- package/bundle/hooks/codex-hooks.json +31 -0
- package/bundle/hooks/codex-plugin-hooks.json +31 -0
- package/bundle/plugin.json +13 -0
- package/bundle/references/adapters/cursor.md +53 -42
- package/bundle/references/adapters/opencode.md +46 -47
- package/bundle/references/adapters/package-manifest-interface-model.yaml +32 -43
- package/bundle/references/adapters/package-registry.yaml +19 -53
- package/bundle/references/adapters/package-surface-characterization.md +55 -35
- package/bundle/references/adapters/runtime-adapter-characterization.md +44 -79
- package/bundle/references/adapters/runtime-adapter-registry.yaml +21 -182
- package/bundle/references/adapters/runtime-feature-parity.md +114 -174
- package/bundle/references/adapters/runtime-lifecycle-adapters.yaml +288 -0
- package/bundle/references/adapters/runtime-lifecycle-authority.yaml +90 -0
- package/bundle/references/adapters/runtime-lifecycle-operation-contract.yaml +84 -0
- package/bundle/references/adapters/runtime-retired-resources.yaml +33 -0
- package/bundle/references/analysis/benchmark.md +6 -6
- package/bundle/references/analysis/startup-measurement-contract.yaml +37 -26
- package/bundle/references/artifacts/artifact-registry-interface-model.yaml +9 -8
- package/bundle/references/artifacts/state-storage-authority.yaml +1446 -0
- package/bundle/references/cli/agent-ready-state-contract.yaml +37 -62
- package/bundle/references/cli/app-lifecycle-vocabulary.yaml +4 -4
- package/bundle/references/cli/audience-namespace-cli-migration.yaml +57 -28
- package/bundle/references/cli/bundle-skill-vocabulary.yaml +4 -32
- package/bundle/references/cli/capability-instruction-contract.yaml +98 -57
- package/bundle/references/cli/capability-instruction-structure.md +144 -0
- package/bundle/references/cli/capability-tool-classification.yaml +12 -12
- package/bundle/references/cli/coexistence-probe.yaml +13 -0
- package/bundle/references/cli/parity-expected-actual-template.md +30 -0
- package/bundle/references/cli/routing-execution-vocabulary.yaml +12 -12
- package/bundle/references/cli/routing-model.md +94 -0
- package/bundle/references/cli/single-name-protocol.yaml +42 -0
- package/bundle/references/cli/trigger-schema-enrichment.md +136 -0
- package/bundle/references/cli/update-channels.yaml +43 -7
- package/bundle/references/cli/upgrade-repair-wording.md +45 -0
- package/bundle/references/cli/v3-handoff-manifest.schema.yaml +98 -0
- package/bundle/references/cli/vocabulary-index.yaml +20 -15
- package/bundle/references/cli/vocabulary.md +342 -326
- package/bundle/references/meta/documentation-inventory.md +10 -3
- package/bundle/registry.json +14 -14
- package/bundle/skills/agentera/SKILL.md +136 -408
- package/bundle/skills/agentera/agents/audit.toml +6 -0
- package/bundle/skills/agentera/agents/build.toml +6 -0
- package/bundle/skills/agentera/agents/design.toml +6 -0
- package/bundle/skills/agentera/agents/discuss.toml +6 -0
- package/bundle/skills/agentera/agents/document.toml +6 -0
- package/bundle/skills/agentera/agents/optimize.toml +6 -0
- package/bundle/skills/agentera/agents/orchestrate.toml +6 -0
- package/bundle/skills/agentera/agents/plan.toml +6 -0
- package/bundle/skills/agentera/agents/profile.toml +6 -0
- package/bundle/skills/agentera/agents/research.toml +6 -0
- package/bundle/skills/agentera/agents/status.toml +6 -0
- package/bundle/skills/agentera/agents/vision.toml +6 -0
- package/bundle/skills/agentera/capabilities/audit/schemas/artifacts.yaml +84 -0
- package/bundle/skills/agentera/capabilities/{inspektera → audit}/schemas/exit.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{inspektera → audit}/schemas/triggers.yaml +15 -6
- package/bundle/skills/agentera/capabilities/{inspektera → audit}/schemas/validation.yaml +20 -19
- package/bundle/skills/agentera/capabilities/{realisera → build}/schemas/artifacts.yaml +22 -17
- package/bundle/skills/agentera/capabilities/{realisera → build}/schemas/exit.yaml +3 -3
- package/bundle/skills/agentera/capabilities/{realisera → build}/schemas/triggers.yaml +13 -3
- package/bundle/skills/agentera/capabilities/{realisera → build}/schemas/validation.yaml +11 -11
- package/bundle/skills/agentera/capabilities/{visualisera → design}/schemas/artifacts.yaml +6 -6
- package/bundle/skills/agentera/capabilities/{visualisera → design}/schemas/exit.yaml +5 -5
- package/bundle/skills/agentera/capabilities/{visualisera → design}/schemas/triggers.yaml +15 -3
- package/bundle/skills/agentera/capabilities/{visualisera → design}/schemas/validation.yaml +7 -7
- package/bundle/skills/agentera/capabilities/discuss/schemas/artifacts.yaml +49 -0
- package/bundle/skills/agentera/capabilities/{resonera → discuss}/schemas/exit.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{resonera → discuss}/schemas/triggers.yaml +11 -3
- package/bundle/skills/agentera/capabilities/{resonera → discuss}/schemas/validation.yaml +9 -8
- package/bundle/skills/agentera/capabilities/{dokumentera → document}/schemas/artifacts.yaml +23 -16
- package/bundle/skills/agentera/capabilities/{dokumentera → document}/schemas/triggers.yaml +14 -4
- package/bundle/skills/agentera/capabilities/{dokumentera → document}/schemas/validation.yaml +18 -18
- package/bundle/skills/agentera/capabilities/{optimera → optimize}/schemas/artifacts.yaml +9 -9
- package/bundle/skills/agentera/capabilities/{optimera → optimize}/schemas/exit.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{optimera → optimize}/schemas/triggers.yaml +11 -3
- package/bundle/skills/agentera/capabilities/{optimera → optimize}/schemas/validation.yaml +9 -9
- package/bundle/skills/agentera/capabilities/orchestrate/schemas/artifacts.yaml +71 -0
- package/bundle/skills/agentera/capabilities/{orkestrera → orchestrate}/schemas/exit.yaml +7 -6
- package/bundle/skills/agentera/capabilities/{orkestrera → orchestrate}/schemas/triggers.yaml +16 -3
- package/bundle/skills/agentera/capabilities/orchestrate/schemas/validation.yaml +120 -0
- package/bundle/skills/agentera/capabilities/plan/schemas/artifacts.yaml +63 -0
- package/bundle/skills/agentera/capabilities/{planera → plan}/schemas/exit.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{planera → plan}/schemas/triggers.yaml +15 -3
- package/bundle/skills/agentera/capabilities/plan/schemas/validation.yaml +89 -0
- package/bundle/skills/agentera/capabilities/{profilera → profile}/schemas/artifacts.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{profilera → profile}/schemas/exit.yaml +3 -3
- package/bundle/skills/agentera/capabilities/{profilera → profile}/schemas/triggers.yaml +7 -3
- package/bundle/skills/agentera/capabilities/{profilera → profile}/schemas/validation.yaml +2 -2
- package/bundle/skills/agentera/capabilities/research/schemas/artifacts.yaml +24 -0
- package/bundle/skills/agentera/capabilities/{inspirera → research}/schemas/triggers.yaml +9 -3
- package/bundle/skills/agentera/capabilities/{inspirera → research}/schemas/validation.yaml +2 -2
- package/bundle/skills/agentera/capabilities/{hej → status}/schemas/artifacts.yaml +14 -11
- package/bundle/skills/agentera/capabilities/{hej → status}/schemas/triggers.yaml +12 -8
- package/bundle/skills/agentera/capabilities/{hej → status}/schemas/validation.yaml +5 -5
- package/bundle/skills/agentera/capabilities/{visionera → vision}/schemas/artifacts.yaml +8 -8
- package/bundle/skills/agentera/capabilities/{visionera → vision}/schemas/exit.yaml +7 -6
- package/bundle/skills/agentera/capabilities/{visionera → vision}/schemas/triggers.yaml +19 -5
- package/bundle/skills/agentera/capabilities/{visionera → vision}/schemas/validation.yaml +18 -20
- package/bundle/skills/agentera/capability_schema_contract.yaml +201 -38
- package/bundle/skills/agentera/protocol.yaml +29 -29
- package/bundle/skills/agentera/references/contract.md +387 -329
- package/bundle/skills/agentera/schemas/artifacts/changelog.yaml +4 -4
- package/bundle/skills/agentera/schemas/artifacts/decisions.yaml +25 -20
- package/bundle/skills/agentera/schemas/artifacts/design.yaml +4 -4
- package/bundle/skills/agentera/schemas/artifacts/docs.yaml +8 -7
- package/bundle/skills/agentera/schemas/artifacts/experiments.yaml +139 -8
- package/bundle/skills/agentera/schemas/artifacts/health.yaml +21 -15
- package/bundle/skills/agentera/schemas/artifacts/objective.yaml +22 -8
- package/bundle/skills/agentera/schemas/artifacts/plan.yaml +285 -11
- package/bundle/skills/agentera/schemas/artifacts/progress.yaml +36 -51
- package/bundle/skills/agentera/schemas/artifacts/todo.yaml +77 -24
- package/bundle/skills/agentera/schemas/artifacts/vision.yaml +3 -3
- package/dist/analytics/extractCorpus/cli.js +163 -0
- package/dist/analytics/extractCorpus/cli.js.map +1 -0
- package/dist/analytics/extractCorpus/copilotSessions.js +276 -0
- package/dist/analytics/extractCorpus/copilotSessions.js.map +1 -0
- package/dist/analytics/extractCorpus/core.js +393 -0
- package/dist/analytics/extractCorpus/core.js.map +1 -0
- package/dist/analytics/extractCorpus/corpus.js +168 -0
- package/dist/analytics/extractCorpus/corpus.js.map +1 -0
- package/dist/analytics/extractCorpus/coverageAudit.js +261 -0
- package/dist/analytics/extractCorpus/coverageAudit.js.map +1 -0
- package/dist/analytics/extractCorpus/cursorSessions.js +426 -0
- package/dist/analytics/extractCorpus/cursorSessions.js.map +1 -0
- package/dist/analytics/extractCorpus/extractCorpusParity.js +105 -0
- package/dist/analytics/extractCorpus/extractCorpusParity.js.map +1 -0
- package/dist/analytics/extractCorpus/filesystemSources.js +119 -0
- package/dist/analytics/extractCorpus/filesystemSources.js.map +1 -0
- package/dist/analytics/extractCorpus/index.js +12 -0
- package/dist/analytics/extractCorpus/index.js.map +1 -0
- package/dist/analytics/extractCorpus/jsonlSessions.js +205 -0
- package/dist/analytics/extractCorpus/jsonlSessions.js.map +1 -0
- package/dist/analytics/extractCorpus/sqliteCaps.js +44 -0
- package/dist/analytics/extractCorpus/sqliteCaps.js.map +1 -0
- package/dist/analytics/extractCorpus/sqliteSessions.js +368 -0
- package/dist/analytics/extractCorpus/sqliteSessions.js.map +1 -0
- package/dist/analytics/extractCorpus.js +2 -1790
- package/dist/analytics/extractCorpus.js.map +1 -1
- package/dist/analytics/usageStats.js +93 -27
- package/dist/analytics/usageStats.js.map +1 -1
- package/dist/bin/agentera.js +3 -1
- package/dist/bin/agentera.js.map +1 -1
- package/dist/capabilities/audit/instructions.js +4 -0
- package/dist/capabilities/audit/instructions.js.map +1 -0
- package/dist/capabilities/build/instructions.js +5 -0
- package/dist/capabilities/build/instructions.js.map +1 -0
- package/dist/capabilities/design/instructions.js +5 -0
- package/dist/capabilities/design/instructions.js.map +1 -0
- package/dist/capabilities/discuss/instructions.js +6 -0
- package/dist/capabilities/discuss/instructions.js.map +1 -0
- package/dist/capabilities/document/instructions.js +4 -0
- package/dist/capabilities/document/instructions.js.map +1 -0
- package/dist/capabilities/index.js +38 -0
- package/dist/capabilities/index.js.map +1 -0
- package/dist/capabilities/optimize/instructions.js +5 -0
- package/dist/capabilities/optimize/instructions.js.map +1 -0
- package/dist/capabilities/orchestrate/instructions.js +10 -0
- package/dist/capabilities/orchestrate/instructions.js.map +1 -0
- package/dist/capabilities/plan/instructions.js +6 -0
- package/dist/capabilities/plan/instructions.js.map +1 -0
- package/dist/capabilities/profile/instructions.js +5 -0
- package/dist/capabilities/profile/instructions.js.map +1 -0
- package/dist/capabilities/research/instructions.js +6 -0
- package/dist/capabilities/research/instructions.js.map +1 -0
- package/dist/capabilities/status/instructions.js +5 -0
- package/dist/capabilities/status/instructions.js.map +1 -0
- package/dist/capabilities/vision/instructions.js +5 -0
- package/dist/capabilities/vision/instructions.js.map +1 -0
- package/dist/cli/appContext.js +30 -23
- package/dist/cli/appContext.js.map +1 -1
- package/dist/cli/capabilityContext/benchmark.js +564 -0
- package/dist/cli/capabilityContext/benchmark.js.map +1 -0
- package/dist/cli/capabilityContext/bespoke.js +38 -0
- package/dist/cli/capabilityContext/bespoke.js.map +1 -0
- package/dist/cli/capabilityContext/build.js +191 -0
- package/dist/cli/capabilityContext/build.js.map +1 -0
- package/dist/cli/capabilityContext/closeout.js +231 -0
- package/dist/cli/capabilityContext/closeout.js.map +1 -0
- package/dist/cli/capabilityContext/contract.js +219 -0
- package/dist/cli/capabilityContext/contract.js.map +1 -0
- package/dist/cli/capabilityContext/evidence.js +457 -0
- package/dist/cli/capabilityContext/evidence.js.map +1 -0
- package/dist/cli/capabilityContext/index.js +4 -0
- package/dist/cli/capabilityContext/index.js.map +1 -0
- package/dist/cli/capabilityContext/orchestration.js +118 -0
- package/dist/cli/capabilityContext/orchestration.js.map +1 -0
- package/dist/cli/capabilityContext/planState.js +279 -0
- package/dist/cli/capabilityContext/planState.js.map +1 -0
- package/dist/cli/capabilityContext/progress.js +143 -0
- package/dist/cli/capabilityContext/progress.js.map +1 -0
- package/dist/cli/capabilityContext/shared.js +94 -0
- package/dist/cli/capabilityContext/shared.js.map +1 -0
- package/dist/cli/capabilityContext/slim.js +139 -0
- package/dist/cli/capabilityContext/slim.js.map +1 -0
- package/dist/cli/capabilityContext/startup.js +241 -0
- package/dist/cli/capabilityContext/startup.js.map +1 -0
- package/dist/cli/capabilityContext/types.js +51 -0
- package/dist/cli/capabilityContext/types.js.map +1 -0
- package/dist/cli/capabilityContext.js +1 -2420
- package/dist/cli/capabilityContext.js.map +1 -1
- package/dist/cli/commands/appHome.js +23 -0
- package/dist/cli/commands/appHome.js.map +1 -0
- package/dist/cli/commands/backfill.js +186 -76
- package/dist/cli/commands/backfill.js.map +1 -1
- package/dist/cli/commands/capability.js +3 -10
- package/dist/cli/commands/capability.js.map +1 -1
- package/dist/cli/commands/compact.js +41 -12
- package/dist/cli/commands/compact.js.map +1 -1
- package/dist/cli/commands/doctor.js +116 -96
- package/dist/cli/commands/doctor.js.map +1 -1
- package/dist/cli/commands/durability.js +85 -0
- package/dist/cli/commands/durability.js.map +1 -0
- package/dist/cli/commands/lint.js +16 -41
- package/dist/cli/commands/lint.js.map +1 -1
- package/dist/cli/commands/migrate.js +677 -0
- package/dist/cli/commands/migrate.js.map +1 -0
- package/dist/cli/commands/prime/bundleStatus.js +185 -0
- package/dist/cli/commands/prime/bundleStatus.js.map +1 -0
- package/dist/cli/commands/prime/collectOrientationState.js +202 -0
- package/dist/cli/commands/prime/collectOrientationState.js.map +1 -0
- package/dist/cli/commands/prime/orientationOutput.js +235 -0
- package/dist/cli/commands/prime/orientationOutput.js.map +1 -0
- package/dist/cli/commands/prime/types.js +2 -0
- package/dist/cli/commands/prime/types.js.map +1 -0
- package/dist/cli/commands/prime/v1Migration.js +39 -0
- package/dist/cli/commands/prime/v1Migration.js.map +1 -0
- package/dist/cli/commands/prime.js +11 -519
- package/dist/cli/commands/prime.js.map +1 -1
- package/dist/cli/commands/query.js +25 -4
- package/dist/cli/commands/query.js.map +1 -1
- package/dist/cli/commands/report.js +50 -14
- package/dist/cli/commands/report.js.map +1 -1
- package/dist/cli/commands/schema.js +343 -76
- package/dist/cli/commands/schema.js.map +1 -1
- package/dist/cli/commands/state/decisions.js +421 -0
- package/dist/cli/commands/state/decisions.js.map +1 -0
- package/dist/cli/commands/state/docs.js +97 -0
- package/dist/cli/commands/state/docs.js.map +1 -0
- package/dist/cli/commands/state/experimentRecords.js +156 -0
- package/dist/cli/commands/state/experimentRecords.js.map +1 -0
- package/dist/cli/commands/state/experiments.js +68 -0
- package/dist/cli/commands/state/experiments.js.map +1 -0
- package/dist/cli/commands/state/get.js +141 -0
- package/dist/cli/commands/state/get.js.map +1 -0
- package/dist/cli/commands/state/health.js +116 -0
- package/dist/cli/commands/state/health.js.map +1 -0
- package/dist/cli/commands/state/index.js +51 -0
- package/dist/cli/commands/state/index.js.map +1 -0
- package/dist/cli/commands/state/list.js +159 -0
- package/dist/cli/commands/state/list.js.map +1 -0
- package/dist/cli/commands/state/objective.js +69 -0
- package/dist/cli/commands/state/objective.js.map +1 -0
- package/dist/cli/commands/state/plan.js +379 -0
- package/dist/cli/commands/state/plan.js.map +1 -0
- package/dist/cli/commands/state/planTasks.js +164 -0
- package/dist/cli/commands/state/planTasks.js.map +1 -0
- package/dist/cli/commands/state/plans.js +154 -0
- package/dist/cli/commands/state/plans.js.map +1 -0
- package/dist/cli/commands/state/progress.js +47 -0
- package/dist/cli/commands/state/progress.js.map +1 -0
- package/dist/cli/commands/state/shared.js +15 -0
- package/dist/cli/commands/state/shared.js.map +1 -0
- package/dist/cli/commands/state/todo.js +121 -0
- package/dist/cli/commands/state/todo.js.map +1 -0
- package/dist/cli/commands/state/write.js +346 -0
- package/dist/cli/commands/state/write.js.map +1 -0
- package/dist/cli/commands/upgrade.js +79 -1
- package/dist/cli/commands/upgrade.js.map +1 -1
- package/dist/cli/commands/upgradeVerify.js +81 -0
- package/dist/cli/commands/upgradeVerify.js.map +1 -0
- package/dist/cli/commands/validate.js +56 -96
- package/dist/cli/commands/validate.js.map +1 -1
- package/dist/cli/commands/verify.js +13 -7
- package/dist/cli/commands/verify.js.map +1 -1
- package/dist/cli/contracts/bundleStatus.js +2 -0
- package/dist/cli/contracts/bundleStatus.js.map +1 -0
- package/dist/cli/contracts/orientationState.js +2 -0
- package/dist/cli/contracts/orientationState.js.map +1 -0
- package/dist/cli/dispatch/argvParser.js +33 -0
- package/dist/cli/dispatch/argvParser.js.map +1 -0
- package/dist/cli/dispatch/check.js +395 -0
- package/dist/cli/dispatch/check.js.map +1 -0
- package/dist/cli/dispatch/commands.js +27 -0
- package/dist/cli/dispatch/commands.js.map +1 -0
- package/dist/cli/dispatch/index.js +201 -0
- package/dist/cli/dispatch/index.js.map +1 -0
- package/dist/cli/dispatch/lifecycle.js +671 -0
- package/dist/cli/dispatch/lifecycle.js.map +1 -0
- package/dist/cli/dispatch/prime.js +104 -0
- package/dist/cli/dispatch/prime.js.map +1 -0
- package/dist/cli/dispatch/shared.js +64 -0
- package/dist/cli/dispatch/shared.js.map +1 -0
- package/dist/cli/dispatch/state.js +168 -0
- package/dist/cli/dispatch/state.js.map +1 -0
- package/dist/cli/dispatch.js +1 -957
- package/dist/cli/dispatch.js.map +1 -1
- package/dist/cli/errors.js +53 -0
- package/dist/cli/errors.js.map +1 -0
- package/dist/cli/help.js +421 -0
- package/dist/cli/help.js.map +1 -0
- package/dist/cli/orientation/attention.js +163 -0
- package/dist/cli/orientation/attention.js.map +1 -0
- package/dist/cli/orientation/corpusCoverage.js +71 -0
- package/dist/cli/orientation/corpusCoverage.js.map +1 -0
- package/dist/cli/orientation.js +336 -144
- package/dist/cli/orientation.js.map +1 -1
- package/dist/cli/planArtifacts.js +201 -0
- package/dist/cli/planArtifacts.js.map +1 -0
- package/dist/cli/planEvidence.js +158 -0
- package/dist/cli/planEvidence.js.map +1 -0
- package/dist/cli/planLifecycleState.js +34 -0
- package/dist/cli/planLifecycleState.js.map +1 -0
- package/dist/cli/prime-blob.js +69 -2
- package/dist/cli/prime-blob.js.map +1 -1
- package/dist/cli/startupCompletenessContract.js +57 -0
- package/dist/cli/startupCompletenessContract.js.map +1 -0
- package/dist/cli/stateQuery.js +22 -5
- package/dist/cli/stateQuery.js.map +1 -1
- package/dist/cli/todoMarkdown.js +33 -0
- package/dist/cli/todoMarkdown.js.map +1 -0
- package/dist/cli/todoSeverity.js +19 -0
- package/dist/cli/todoSeverity.js.map +1 -0
- package/dist/core/atomicWriter.js +21 -0
- package/dist/core/atomicWriter.js.map +1 -0
- package/dist/core/envPaths.js +21 -0
- package/dist/core/envPaths.js.map +1 -0
- package/dist/core/jsonValue.js +6 -0
- package/dist/core/jsonValue.js.map +1 -0
- package/dist/core/pyjson.js +67 -2
- package/dist/core/pyjson.js.map +1 -1
- package/dist/core/text.js +11 -0
- package/dist/core/text.js.map +1 -0
- package/dist/core/yaml.js +8 -0
- package/dist/core/yaml.js.map +1 -1
- package/dist/eval/evalSkills.js +30 -25
- package/dist/eval/evalSkills.js.map +1 -1
- package/dist/eval/semanticEval.js +43 -19
- package/dist/eval/semanticEval.js.map +1 -1
- package/dist/eval/semanticFixtures.js +16 -4
- package/dist/eval/semanticFixtures.js.map +1 -1
- package/dist/hooks/common.js +9 -26
- package/dist/hooks/common.js.map +1 -1
- package/dist/hooks/compaction/apply.js +447 -0
- package/dist/hooks/compaction/apply.js.map +1 -0
- package/dist/hooks/compaction/dryRun.js +185 -0
- package/dist/hooks/compaction/dryRun.js.map +1 -0
- package/dist/hooks/compaction/index.js +23 -0
- package/dist/hooks/compaction/index.js.map +1 -0
- package/dist/hooks/compaction/parse.js +326 -0
- package/dist/hooks/compaction/parse.js.map +1 -0
- package/dist/hooks/compaction/retention.js +203 -0
- package/dist/hooks/compaction/retention.js.map +1 -0
- package/dist/hooks/compaction/status.js +336 -0
- package/dist/hooks/compaction/status.js.map +1 -0
- package/dist/hooks/compaction/types.js +6 -0
- package/dist/hooks/compaction/types.js.map +1 -0
- package/dist/hooks/cursorPreToolUse.js +1 -1
- package/dist/hooks/cursorPreToolUse.js.map +1 -1
- package/dist/hooks/cursorSessionStart.js +10 -2
- package/dist/hooks/cursorSessionStart.js.map +1 -1
- package/dist/hooks/sessionStart.js +57 -18
- package/dist/hooks/sessionStart.js.map +1 -1
- package/dist/hooks/sessionStop.js +8 -14
- package/dist/hooks/sessionStop.js.map +1 -1
- package/dist/hooks/validateArtifact/agentFacing.js +10 -0
- package/dist/hooks/validateArtifact/agentFacing.js.map +1 -0
- package/dist/hooks/validateArtifact/index.js +151 -0
- package/dist/hooks/validateArtifact/index.js.map +1 -0
- package/dist/hooks/validateArtifact/markdown.js +146 -0
- package/dist/hooks/validateArtifact/markdown.js.map +1 -0
- package/dist/hooks/validateArtifact/runtime.js +86 -0
- package/dist/hooks/validateArtifact/runtime.js.map +1 -0
- package/dist/hooks/validateArtifact/schema.js +541 -0
- package/dist/hooks/validateArtifact/schema.js.map +1 -0
- package/dist/hooks/validateArtifact/traversal.js +108 -0
- package/dist/hooks/validateArtifact/traversal.js.map +1 -0
- package/dist/hooks/validateArtifact/violations.js +108 -0
- package/dist/hooks/validateArtifact/violations.js.map +1 -0
- package/dist/migrate/v2HandoffManifest.js +455 -0
- package/dist/migrate/v2HandoffManifest.js.map +1 -0
- package/dist/registries/artifactProtocolIds.js +77 -0
- package/dist/registries/artifactProtocolIds.js.map +1 -0
- package/dist/registries/artifactRegistry.js +203 -53
- package/dist/registries/artifactRegistry.js.map +1 -1
- package/dist/registries/capabilityContract.js +156 -12
- package/dist/registries/capabilityContract.js.map +1 -1
- package/dist/registries/evaluatorHandoffContract.js +171 -0
- package/dist/registries/evaluatorHandoffContract.js.map +1 -0
- package/dist/registries/packageRegistry.js +40 -6
- package/dist/registries/packageRegistry.js.map +1 -1
- package/dist/registries/runtimeAdapterRegistry.js +30 -21
- package/dist/registries/runtimeAdapterRegistry.js.map +1 -1
- package/dist/registries/triggerLoader.js +211 -0
- package/dist/registries/triggerLoader.js.map +1 -0
- package/dist/release/releaseMetadata.js +329 -0
- package/dist/release/releaseMetadata.js.map +1 -0
- package/dist/runtime/lifecycleAdapterContract.js +458 -0
- package/dist/runtime/lifecycleAdapterContract.js.map +1 -0
- package/dist/runtime/lifecycleAdapters.js +766 -0
- package/dist/runtime/lifecycleAdapters.js.map +1 -0
- package/dist/runtime/lifecycleAuthority.js +493 -0
- package/dist/runtime/lifecycleAuthority.js.map +1 -0
- package/dist/runtime/lifecycleOperationContract.js +113 -0
- package/dist/runtime/lifecycleOperationContract.js.map +1 -0
- package/dist/runtime/lifecycleOperations.js +635 -0
- package/dist/runtime/lifecycleOperations.js.map +1 -0
- package/dist/runtime/lifecycleOwnershipJournal.js +623 -0
- package/dist/runtime/lifecycleOwnershipJournal.js.map +1 -0
- package/dist/runtime/lifecyclePublication.js +395 -0
- package/dist/runtime/lifecyclePublication.js.map +1 -0
- package/dist/runtime/lifecycleSnapshot.js +439 -0
- package/dist/runtime/lifecycleSnapshot.js.map +1 -0
- package/dist/runtime/retiredRuntimeCleanup.js +238 -0
- package/dist/runtime/retiredRuntimeCleanup.js.map +1 -0
- package/dist/setup/codex/agents.js +96 -0
- package/dist/setup/codex/agents.js.map +1 -0
- package/dist/setup/codex/cli.js +161 -0
- package/dist/setup/codex/cli.js.map +1 -0
- package/dist/setup/codex/configToml.js +639 -0
- package/dist/setup/codex/configToml.js.map +1 -0
- package/dist/setup/codex/constants.js +29 -0
- package/dist/setup/codex/constants.js.map +1 -0
- package/dist/setup/codex/installRoot.js +64 -0
- package/dist/setup/codex/installRoot.js.map +1 -0
- package/dist/setup/codex/state.js +270 -0
- package/dist/setup/codex/state.js.map +1 -0
- package/dist/setup/codex.js +11 -1055
- package/dist/setup/codex.js.map +1 -1
- package/dist/setup/copilot.js +1 -1
- package/dist/setup/copilot.js.map +1 -1
- package/dist/setup/cursor.js +7 -5
- package/dist/setup/cursor.js.map +1 -1
- package/dist/setup/cursorSurfaces.js +67 -0
- package/dist/setup/cursorSurfaces.js.map +1 -0
- package/dist/setup/doctor/core.js +296 -0
- package/dist/setup/doctor/core.js.map +1 -0
- package/dist/setup/doctor/diagnostics.js +201 -0
- package/dist/setup/doctor/diagnostics.js.map +1 -0
- package/dist/setup/doctor/opencode.js +301 -0
- package/dist/setup/doctor/opencode.js.map +1 -0
- package/dist/setup/doctor/report.js +425 -0
- package/dist/setup/doctor/report.js.map +1 -0
- package/dist/setup/doctor.js +9 -1275
- package/dist/setup/doctor.js.map +1 -1
- package/dist/setup/opencode.js +13 -0
- package/dist/setup/opencode.js.map +1 -0
- package/dist/setup/opencodeConstants.js +2 -0
- package/dist/setup/opencodeConstants.js.map +1 -0
- package/dist/setup/smokeChecks.js +109 -0
- package/dist/setup/smokeChecks.js.map +1 -0
- package/dist/state/archiveDiscovery.js +589 -0
- package/dist/state/archiveDiscovery.js.map +1 -0
- package/dist/state/archivePublication.js +225 -0
- package/dist/state/archivePublication.js.map +1 -0
- package/dist/state/archiveRecovery.js +238 -0
- package/dist/state/archiveRecovery.js.map +1 -0
- package/dist/state/archiveReplay.js +54 -0
- package/dist/state/archiveReplay.js.map +1 -0
- package/dist/state/decisionOverlay.js +255 -0
- package/dist/state/decisionOverlay.js.map +1 -0
- package/dist/state/directRetrieval.js +322 -0
- package/dist/state/directRetrieval.js.map +1 -0
- package/dist/state/durability.js +451 -0
- package/dist/state/durability.js.map +1 -0
- package/dist/state/experimentArchive.js +64 -0
- package/dist/state/experimentArchive.js.map +1 -0
- package/dist/state/experimentIdentity.js +191 -0
- package/dist/state/experimentIdentity.js.map +1 -0
- package/dist/state/experimentRetrieval.js +447 -0
- package/dist/state/experimentRetrieval.js.map +1 -0
- package/dist/state/gitBackfill.js +561 -0
- package/dist/state/gitBackfill.js.map +1 -0
- package/dist/state/gitBackfillAuthority.js +141 -0
- package/dist/state/gitBackfillAuthority.js.map +1 -0
- package/dist/state/gitBackfillHistory.js +278 -0
- package/dist/state/gitBackfillHistory.js.map +1 -0
- package/dist/state/gitBackfillOutput.js +209 -0
- package/dist/state/gitBackfillOutput.js.map +1 -0
- package/dist/state/healthRepair.js +70 -0
- package/dist/state/healthRepair.js.map +1 -0
- package/dist/state/installRoot.js +64 -24
- package/dist/state/installRoot.js.map +1 -1
- package/dist/state/legacyIdentity.js +48 -0
- package/dist/state/legacyIdentity.js.map +1 -0
- package/dist/state/legacyMigration.js +516 -0
- package/dist/state/legacyMigration.js.map +1 -0
- package/dist/state/legacyMigrationParser.js +489 -0
- package/dist/state/legacyMigrationParser.js.map +1 -0
- package/dist/state/listAccounting.js +55 -0
- package/dist/state/listAccounting.js.map +1 -0
- package/dist/state/listClassification.js +18 -0
- package/dist/state/listClassification.js.map +1 -0
- package/dist/state/listRetrieval.js +782 -0
- package/dist/state/listRetrieval.js.map +1 -0
- package/dist/state/migrationAuthority.js +413 -0
- package/dist/state/migrationAuthority.js.map +1 -0
- package/dist/state/migrationEnrichment.js +35 -0
- package/dist/state/migrationEnrichment.js.map +1 -0
- package/dist/state/planIdentity.js +45 -0
- package/dist/state/planIdentity.js.map +1 -0
- package/dist/state/planRetrieval.js +314 -0
- package/dist/state/planRetrieval.js.map +1 -0
- package/dist/state/planTaskRetrieval.js +285 -0
- package/dist/state/planTaskRetrieval.js.map +1 -0
- package/dist/state/projectionPolicy.js +184 -0
- package/dist/state/projectionPolicy.js.map +1 -0
- package/dist/state/retrievalAuthority.js +326 -0
- package/dist/state/retrievalAuthority.js.map +1 -0
- package/dist/state/startupAnalysis/benchmark.js +371 -0
- package/dist/state/startupAnalysis/benchmark.js.map +1 -0
- package/dist/state/startupAnalysis/contract.js +126 -0
- package/dist/state/startupAnalysis/contract.js.map +1 -0
- package/dist/state/startupAnalysis/helpers.js +287 -0
- package/dist/state/startupAnalysis/helpers.js.map +1 -0
- package/dist/state/startupAnalysis/index.js +7 -0
- package/dist/state/startupAnalysis/index.js.map +1 -0
- package/dist/state/startupAnalysis/metrics.js +341 -0
- package/dist/state/startupAnalysis/metrics.js.map +1 -0
- package/dist/state/startupAnalysis/records.js +199 -0
- package/dist/state/startupAnalysis/records.js.map +1 -0
- package/dist/state/startupAnalysis/report.js +112 -0
- package/dist/state/startupAnalysis/report.js.map +1 -0
- package/dist/state/startupAnalysis/threshold.js +500 -0
- package/dist/state/startupAnalysis/threshold.js.map +1 -0
- package/dist/state/startupAnalysis.js +2 -1952
- package/dist/state/startupAnalysis.js.map +1 -1
- package/dist/state/startupProjection.js +498 -0
- package/dist/state/startupProjection.js.map +1 -0
- package/dist/state/write/assign.js +21 -0
- package/dist/state/write/assign.js.map +1 -0
- package/dist/state/write/errors.js +12 -0
- package/dist/state/write/errors.js.map +1 -0
- package/dist/state/write/experimentPublication.js +193 -0
- package/dist/state/write/experimentPublication.js.map +1 -0
- package/dist/state/write/explain.js +169 -0
- package/dist/state/write/explain.js.map +1 -0
- package/dist/state/write/fields.js +62 -0
- package/dist/state/write/fields.js.map +1 -0
- package/dist/state/write/helpers.js +8 -0
- package/dist/state/write/helpers.js.map +1 -0
- package/dist/state/write/index.js +12 -0
- package/dist/state/write/index.js.map +1 -0
- package/dist/state/write/input.js +22 -0
- package/dist/state/write/input.js.map +1 -0
- package/dist/state/write/lock.js +131 -0
- package/dist/state/write/lock.js.map +1 -0
- package/dist/state/write/mutation.js +190 -0
- package/dist/state/write/mutation.js.map +1 -0
- package/dist/state/write/operations.js +254 -0
- package/dist/state/write/operations.js.map +1 -0
- package/dist/state/write/planPublication.js +172 -0
- package/dist/state/write/planPublication.js.map +1 -0
- package/dist/state/write/serialize.js +2 -0
- package/dist/state/write/serialize.js.map +1 -0
- package/dist/state/write/transaction.js +800 -0
- package/dist/state/write/transaction.js.map +1 -0
- package/dist/state/write/validate.js +8 -0
- package/dist/state/write/validate.js.map +1 -0
- package/dist/upgrade/appContentRefresh.js +374 -0
- package/dist/upgrade/appContentRefresh.js.map +1 -0
- package/dist/upgrade/appModel.js +11 -6
- package/dist/upgrade/appModel.js.map +1 -1
- package/dist/upgrade/atomicWriter.js +2 -0
- package/dist/upgrade/atomicWriter.js.map +1 -0
- package/dist/upgrade/bundleEvidence.js +34 -0
- package/dist/upgrade/bundleEvidence.js.map +1 -0
- package/dist/upgrade/channels.js +27 -7
- package/dist/upgrade/channels.js.map +1 -1
- package/dist/upgrade/coexistenceProbe.js +105 -0
- package/dist/upgrade/coexistenceProbe.js.map +1 -0
- package/dist/upgrade/compatibility.js +52 -16
- package/dist/upgrade/compatibility.js.map +1 -1
- package/dist/upgrade/doctor.js +195 -193
- package/dist/upgrade/doctor.js.map +1 -1
- package/dist/upgrade/doctorClassifier.js +188 -0
- package/dist/upgrade/doctorClassifier.js.map +1 -0
- package/dist/upgrade/installedHooksRetirement.js +190 -0
- package/dist/upgrade/installedHooksRetirement.js.map +1 -0
- package/dist/upgrade/legacyAgentCleanup.js +183 -0
- package/dist/upgrade/legacyAgentCleanup.js.map +1 -0
- package/dist/upgrade/lifecycleUpgrade.js +427 -0
- package/dist/upgrade/lifecycleUpgrade.js.map +1 -0
- package/dist/upgrade/migrateArtifactsV1ToV2.js +568 -0
- package/dist/upgrade/migrateArtifactsV1ToV2.js.map +1 -0
- package/dist/upgrade/migrateArtifactsV2ToV3.js +273 -144
- package/dist/upgrade/migrateArtifactsV2ToV3.js.map +1 -1
- package/dist/upgrade/nextMajorDoctor.js +156 -0
- package/dist/upgrade/nextMajorDoctor.js.map +1 -0
- package/dist/upgrade/npxPlatformStatus.js +23 -0
- package/dist/upgrade/npxPlatformStatus.js.map +1 -0
- package/dist/upgrade/projectIntegration.js +259 -104
- package/dist/upgrade/projectIntegration.js.map +1 -1
- package/dist/upgrade/projectIntegrationDecision.js +141 -0
- package/dist/upgrade/projectIntegrationDecision.js.map +1 -0
- package/dist/upgrade/runtimeMigration.js +342 -89
- package/dist/upgrade/runtimeMigration.js.map +1 -1
- package/dist/upgrade/upgradeCommands.js +8 -0
- package/dist/upgrade/upgradeCommands.js.map +1 -1
- package/dist/upgrade/upgradeLock.js +54 -0
- package/dist/upgrade/upgradeLock.js.map +1 -0
- package/dist/upgrade/upgradeOrchestrator.js +170 -46
- package/dist/upgrade/upgradeOrchestrator.js.map +1 -1
- package/dist/upgrade/upgradeSnapshot.js +93 -0
- package/dist/upgrade/upgradeSnapshot.js.map +1 -0
- package/dist/upgrade/v3CapabilitySurface.js +15 -0
- package/dist/upgrade/v3CapabilitySurface.js.map +1 -0
- package/dist/upgrade/versionResolution.js +12 -4
- package/dist/upgrade/versionResolution.js.map +1 -1
- package/dist/validate/appHomeContract.js +5 -5
- package/dist/validate/appHomeContract.js.map +1 -1
- package/dist/validate/capability.js +135 -14
- package/dist/validate/capability.js.map +1 -1
- package/dist/validate/crossCapability.js +10 -7
- package/dist/validate/crossCapability.js.map +1 -1
- package/dist/validate/lifecycleAdapters/legacyPythonParity.js +93 -0
- package/dist/validate/lifecycleAdapters/legacyPythonParity.js.map +1 -0
- package/dist/validate/lifecycleAdapters/nodeFormChecks.js +481 -0
- package/dist/validate/lifecycleAdapters/nodeFormChecks.js.map +1 -0
- package/dist/validate/lifecycleAdapters/shared.js +198 -0
- package/dist/validate/lifecycleAdapters/shared.js.map +1 -0
- package/dist/validate/lifecycleAdapters.js +91 -702
- package/dist/validate/lifecycleAdapters.js.map +1 -1
- package/dist/validate/selfAudit.js +63 -21
- package/dist/validate/selfAudit.js.map +1 -1
- package/dist/validate/vocabularyAuthority.js +303 -0
- package/dist/validate/vocabularyAuthority.js.map +1 -0
- package/package.json +30 -27
- package/bundle/references/v1-section-mapping.md +0 -47
- package/bundle/skills/agentera/.claude-plugin/plugin.json +0 -27
- package/bundle/skills/agentera/agents/dokumentera.toml +0 -6
- package/bundle/skills/agentera/agents/hej.toml +0 -6
- package/bundle/skills/agentera/agents/inspektera.toml +0 -6
- package/bundle/skills/agentera/agents/inspirera.toml +0 -6
- package/bundle/skills/agentera/agents/optimera.toml +0 -6
- package/bundle/skills/agentera/agents/orkestrera.toml +0 -6
- package/bundle/skills/agentera/agents/planera.toml +0 -6
- package/bundle/skills/agentera/agents/profilera.toml +0 -6
- package/bundle/skills/agentera/agents/realisera.toml +0 -6
- package/bundle/skills/agentera/agents/resonera.toml +0 -6
- package/bundle/skills/agentera/agents/visionera.toml +0 -6
- package/bundle/skills/agentera/agents/visualisera.toml +0 -6
- package/bundle/skills/agentera/capabilities/dokumentera/instructions.md +0 -428
- package/bundle/skills/agentera/capabilities/hej/instructions.md +0 -331
- package/bundle/skills/agentera/capabilities/inspektera/instructions.md +0 -514
- package/bundle/skills/agentera/capabilities/inspektera/schemas/artifacts.yaml +0 -76
- package/bundle/skills/agentera/capabilities/inspirera/instructions.md +0 -280
- package/bundle/skills/agentera/capabilities/inspirera/schemas/artifacts.yaml +0 -24
- package/bundle/skills/agentera/capabilities/optimera/instructions.md +0 -437
- package/bundle/skills/agentera/capabilities/orkestrera/instructions.md +0 -433
- package/bundle/skills/agentera/capabilities/orkestrera/schemas/artifacts.yaml +0 -64
- package/bundle/skills/agentera/capabilities/orkestrera/schemas/validation.yaml +0 -107
- package/bundle/skills/agentera/capabilities/planera/instructions.md +0 -368
- package/bundle/skills/agentera/capabilities/planera/schemas/artifacts.yaml +0 -62
- package/bundle/skills/agentera/capabilities/planera/schemas/validation.yaml +0 -61
- package/bundle/skills/agentera/capabilities/profilera/instructions.md +0 -419
- package/bundle/skills/agentera/capabilities/realisera/instructions.md +0 -403
- package/bundle/skills/agentera/capabilities/resonera/instructions.md +0 -329
- package/bundle/skills/agentera/capabilities/resonera/schemas/artifacts.yaml +0 -47
- package/bundle/skills/agentera/capabilities/visionera/instructions.md +0 -309
- package/bundle/skills/agentera/capabilities/visualisera/instructions.md +0 -400
- package/bundle/skills/hej/.claude-plugin/plugin.json +0 -6
- package/bundle/skills/hej/SKILL.md +0 -69
- package/bundle/skills/hej/agents/hej.toml +0 -11
- package/bundle/skills/hej/agents/openai.yaml +0 -8
- package/dist/cli/commands/state.js +0 -1012
- package/dist/cli/commands/state.js.map +0 -1
- package/dist/core/git.js +0 -43
- package/dist/core/git.js.map +0 -1
- package/dist/hooks/compaction.js +0 -935
- package/dist/hooks/compaction.js.map +0 -1
- package/dist/hooks/validateArtifact.js +0 -933
- package/dist/hooks/validateArtifact.js.map +0 -1
- package/dist/state/progressCommit.js +0 -289
- package/dist/state/progressCommit.js.map +0 -1
- /package/bundle/skills/agentera/capabilities/{dokumentera → document}/schemas/exit.yaml +0 -0
- /package/bundle/skills/agentera/capabilities/{inspirera → research}/schemas/exit.yaml +0 -0
- /package/bundle/skills/agentera/capabilities/{hej → status}/schemas/exit.yaml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# OpenCode Adapter
|
|
2
2
|
|
|
3
|
-
Maps agentera's host adapter contract (SPEC.md Section 21) and session corpus contract (SPEC.md Section 22) to OpenCode's specific mechanisms. A developer reading only this document can implement portable-core agentera support and a
|
|
3
|
+
Maps agentera's host adapter contract (SPEC.md Section 21) and session corpus contract (SPEC.md Section 22) to OpenCode's specific mechanisms. A developer reading only this document can implement portable-core agentera support and a profile-compatible session corpus in OpenCode without reading any skill entry file source code.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -17,7 +17,7 @@ Status: production reference (formerly design document).
|
|
|
17
17
|
| Skill install | Documented below | `npx skills add jgabor/agentera -g -a opencode --skill agentera -y` |
|
|
18
18
|
| Profile path | Documented below | `~/.config/opencode/profile/PROFILE.md` |
|
|
19
19
|
|
|
20
|
-
Routes exact bare text
|
|
20
|
+
Routes exact bare text /agentera through chat.message to the bundled Agentera dashboard path. The public docs page omits this hook, but `packages/plugin/src/index.ts` defines `"chat.message"` on the exported `Hooks` interface.
|
|
21
21
|
|
|
22
22
|
The plugin was promoted from `references/adapters/opencode-plugin.js` to `.opencode/plugins/agentera.js` and is now the production local-file location. Install it with:
|
|
23
23
|
|
|
@@ -56,13 +56,14 @@ OpenCode skill search paths:
|
|
|
56
56
|
- Global install: `npx skills add jgabor/agentera -g -a opencode --skill agentera -y`
|
|
57
57
|
- Project install: symlink or copy `skills/agentera/` into `.opencode/skills/agentera/` or `.agents/skills/agentera/`
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
Each Agentera skill entry file contains YAML frontmatter with `name` and `description`, which matches OpenCode's frontmatter requirements exactly. The OpenCode plugin adds one prompt transformation: when the complete user message is exactly bare text `/agentera`, `chat.message` rewrites it to load the bundled `agentera` skill and route through the `agentera prime` dashboard path. The match is exact except for OpenCode's CLI-added single trailing newline transport artifact, and does not apply to `/agentera plan`, `/agentera status`, attachments, or other message parts.
|
|
60
60
|
|
|
61
61
|
**OpenCode frontmatter validation** requires: `name` (1-64 chars, lowercase alphanumeric with single hyphens), `description` (1-1024 chars). Agentera entry point names are lowercase, matching the validation regex `^[a-z0-9]+(-[a-z0-9]+)*$`.
|
|
62
62
|
|
|
63
63
|
**Skill loading**: OpenCode loads skills on-demand via a native `skill` tool. Agents see available skills listed in the tool description and load full content by calling `skill({ name: "agentera" })`. Agentera works unmodified: it is loaded into the agent's context when invoked.
|
|
64
64
|
|
|
65
|
-
**Gap**: None. OpenCode
|
|
65
|
+
**Gap**: None. OpenCode skill discovery supports `.opencode/`, `.claude/`
|
|
66
|
+
compatibility, and `.agents/` paths. Agentera skills install cleanly.
|
|
66
67
|
|
|
67
68
|
### Artifact resolution (Required)
|
|
68
69
|
|
|
@@ -82,14 +83,14 @@ The temporary `skills/hej/` entry point is a v1 upgrade bridge, not a new-instal
|
|
|
82
83
|
|
|
83
84
|
**Adapter approach**: Place PROFILE.md at `~/.config/opencode/profile/PROFILE.md` (or `~/.config/opencode/PROFILE.md` for simplicity). Update the profile-path references:
|
|
84
85
|
|
|
85
|
-
- Skills reference `$
|
|
86
|
+
- Skills reference `$AGENTERA_PROFILE_DIR/PROFILE.md` (default: `$XDG_DATA_HOME/agentera/PROFILE.md`) with `<!-- platform: profile-path -->` annotations
|
|
86
87
|
- The OpenCode adapter substitutes `~/.config/opencode/profile/PROFILE.md`
|
|
87
|
-
-
|
|
88
|
+
- Profile writes to this path when generating the profile
|
|
88
89
|
|
|
89
90
|
**Concrete substitution**: In contract.md files, the annotated line:
|
|
90
91
|
|
|
91
92
|
```
|
|
92
|
-
Read PROFILE.md from the
|
|
93
|
+
Read PROFILE.md from the profile-determined profile path (`$AGENTERA_PROFILE_DIR/PROFILE.md`, defaulting to `$XDG_DATA_HOME/agentera/PROFILE.md` on Linux). <!-- platform: profile-path -->
|
|
93
94
|
```
|
|
94
95
|
|
|
95
96
|
becomes in the OpenCode context:
|
|
@@ -112,14 +113,14 @@ Read PROFILE.md from the runtime-provided profile path (Section 21). In OpenCode
|
|
|
112
113
|
|
|
113
114
|
**Adapter approach**: Map agentera's worktree isolation to one of two strategies:
|
|
114
115
|
|
|
115
|
-
**Strategy A:
|
|
116
|
+
**Strategy A: Single agent dispatch (D73)**
|
|
116
117
|
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
- Descriptor frontmatter
|
|
120
|
-
- Agentera ownership is recorded in a body comment marker
|
|
121
|
-
- The OpenCode plugin copies
|
|
122
|
-
- The orchestrating skill (
|
|
118
|
+
- A single Agentera primary agent (`agentera.md`) in `.opencode/agents/`
|
|
119
|
+
- The agent loads the Agentera skill for routing, runs `agentera prime --context <capability> --format json` to fetch instructions, then dispatches to a built-in `general` subagent
|
|
120
|
+
- Descriptor frontmatter uses `description` and `mode: primary` with broad `permission` (write+bash allow)
|
|
121
|
+
- Agentera ownership is recorded in a body comment marker
|
|
122
|
+
- The OpenCode plugin copies the agent descriptor to `~/.config/opencode/agents/` on startup
|
|
123
|
+
- The orchestrating skill (build, orchestrate) uses `@agentera` to invoke work
|
|
123
124
|
- Limitation: runs in the same working tree, not isolated. Suitable for non-destructive work.
|
|
124
125
|
|
|
125
126
|
**Strategy B: Manual git worktree (full isolation parity)**
|
|
@@ -130,18 +131,18 @@ Read PROFILE.md from the runtime-provided profile path (Section 21). In OpenCode
|
|
|
130
131
|
- Provides true parallel implementation with independent branches
|
|
131
132
|
- Requires explicit orchestration in the skill workflow
|
|
132
133
|
|
|
133
|
-
**Concrete mapping for
|
|
134
|
+
**Concrete mapping for build Step 5 dispatch**:
|
|
134
135
|
|
|
135
136
|
```
|
|
136
|
-
#
|
|
137
|
-
Spawn
|
|
137
|
+
# Runtime-neutral requirement
|
|
138
|
+
Spawn an implementation agent in an isolated worktree
|
|
138
139
|
|
|
139
140
|
# OpenCode Strategy A
|
|
140
|
-
Invoke the
|
|
141
|
+
Invoke the Agentera agent (@agentera) with the implementation plan
|
|
141
142
|
|
|
142
143
|
# OpenCode Strategy B
|
|
143
144
|
git worktree add ../worktree-branch branch-name
|
|
144
|
-
Dispatch
|
|
145
|
+
Dispatch @agentera with cwd set to ../worktree-branch
|
|
145
146
|
After completion: git merge, git worktree remove
|
|
146
147
|
```
|
|
147
148
|
|
|
@@ -167,7 +168,8 @@ opencode run "Explain closures in JavaScript"
|
|
|
167
168
|
opencode run --format json "Explain closures in JavaScript"
|
|
168
169
|
```
|
|
169
170
|
|
|
170
|
-
The `--format json` flag produces a raw JSON event stream
|
|
171
|
+
The `--format json` flag produces a raw JSON event stream. Each event is a
|
|
172
|
+
separate JSON object representing a message part, tool call, or status update.
|
|
171
173
|
|
|
172
174
|
For long-running sessions, OpenCode's server mode provides an HTTP API with the same structured output:
|
|
173
175
|
|
|
@@ -176,15 +178,8 @@ opencode serve --port 4096
|
|
|
176
178
|
# Then POST to the API with session creation and message sending
|
|
177
179
|
```
|
|
178
180
|
|
|
179
|
-
**Adapter approach**:
|
|
180
|
-
|
|
181
|
-
| Claude Code | OpenCode |
|
|
182
|
-
|-------------|----------|
|
|
183
|
-
| `claude -p "prompt"` | `opencode run "prompt"` |
|
|
184
|
-
| `claude -p --output-format json` | `opencode run --format json "prompt"` |
|
|
185
|
-
| `claude -p --skill realisera` | `opencode run "prompt"` (skill loaded via discovery) |
|
|
186
|
-
|
|
187
|
-
The agentera eval runner (`scripts/eval_skills.py`) would need an OpenCode dispatch mode that calls `opencode run --format json` instead of `claude -p --output-format json`. The dispatch wrapper:
|
|
181
|
+
**Adapter approach**: The eval runner invokes `opencode run --format json`
|
|
182
|
+
directly and parses OpenCode's event schema. The dispatch wrapper:
|
|
188
183
|
|
|
189
184
|
```python
|
|
190
185
|
def dispatch_opencode(skill_name: str, prompt: str) -> dict:
|
|
@@ -195,7 +190,9 @@ def dispatch_opencode(skill_name: str, prompt: str) -> dict:
|
|
|
195
190
|
return {"output": result.stdout, "exit_code": result.returncode}
|
|
196
191
|
```
|
|
197
192
|
|
|
198
|
-
**Gap**: Minimal. `opencode run --format json` provides structured JSON events
|
|
193
|
+
**Gap**: Minimal. `opencode run --format json` provides structured JSON events.
|
|
194
|
+
The eval runner uses a dedicated OpenCode parser. For smoke tests, text output
|
|
195
|
+
with exit-code checking is also sufficient.
|
|
199
196
|
|
|
200
197
|
### Hook lifecycle (Optional but recommended)
|
|
201
198
|
|
|
@@ -207,10 +204,10 @@ def dispatch_opencode(skill_name: str, prompt: str) -> dict:
|
|
|
207
204
|
|---------------|----------------|-------|
|
|
208
205
|
| SessionStart | `event` hook with `event.type === "session.created"` | Observation only unless a supported context-injection hook is also used |
|
|
209
206
|
| Stop | `event` hook with `event.type === "session.idle"` | Fires when a session reaches idle state |
|
|
210
|
-
| Exact bare `
|
|
207
|
+
| Exact bare `/agentera` | `chat.message` | Rewrites only the complete text message `/agentera` so the bundled `agentera` skill owns the dashboard path |
|
|
211
208
|
| PreToolUse | `tool.execute.before` | Blocks invalid reconstructable artifact candidates by throwing an error |
|
|
212
209
|
| PostToolUse | `tool.execute.after` | Fires after every tool execution |
|
|
213
|
-
| Compaction context | `experimental.session.compacting` | Appends bounded Agentera state from `agentera
|
|
210
|
+
| Compaction context | `experimental.session.compacting` | Appends bounded Agentera state from `agentera prime --format json` |
|
|
214
211
|
|
|
215
212
|
OpenCode plugins subscribe to session events by exporting one generic `event` hook:
|
|
216
213
|
|
|
@@ -233,7 +230,7 @@ export const AgenteraPlugin = async ({ project, client, $, directory, worktree }
|
|
|
233
230
|
// PostToolUse equivalent: report validation warnings
|
|
234
231
|
},
|
|
235
232
|
"chat.message": async (input, output) => {
|
|
236
|
-
// Exact bare
|
|
233
|
+
// Exact bare /agentera prompt rewrite.
|
|
237
234
|
},
|
|
238
235
|
"experimental.session.compacting": async (input, output) => {
|
|
239
236
|
// Append bounded Agentera CLI state context.
|
|
@@ -248,17 +245,17 @@ Install-root semantics used by the plugin are contract-bound to `scripts/install
|
|
|
248
245
|
|
|
249
246
|
OpenCode runtime facts are owned by the RuntimeAdapter registry at `references/adapters/runtime-adapter-registry.yaml` and loaded through `scripts/runtime_adapter_registry.py`. This reference describes the OpenCode adapter behavior, but registry-owned values such as event support, artifact-validation claims, config targets, diagnostic labels, and documentation claims must be validated against the registry rather than changed here as an independent source. The install-root Module must keep package manifest registry and package metadata consolidation work outside its scope.
|
|
250
247
|
|
|
251
|
-
Registry parity claims: Blocks invalid reconstructable artifact candidates. Routes exact bare text
|
|
248
|
+
Registry parity claims: Blocks invalid reconstructable artifact candidates. Routes exact bare text /agentera through chat.message to the bundled Agentera dashboard path.
|
|
252
249
|
|
|
253
250
|
1. **SessionStart** (`event.type === "session.created"`): Observe session creation through the event hook. Session-start context preload remains deferred because no supported model-context injection path is verified for this adapter. Do not attach dead preload code to event observation alone.
|
|
254
251
|
|
|
255
252
|
2. **PreToolUse** (`tool.execute.before`): When `write` or `edit` args expose a path plus candidate content or exact replacement evidence, validate the candidate through `hooks/validate_artifact.py`. Throw an error to block invalid artifact content before mutation. Sparse payloads and `apply_patch` `patchText` without reconstructed full content are allowed rather than guessed.
|
|
256
253
|
|
|
257
|
-
3. **Exact bare
|
|
254
|
+
3. **Exact bare `/agentera`** (`chat.message`): If the incoming user message has exactly one meaningful text part and that text is exactly `/agentera` after removing only OpenCode's CLI-added single trailing newline transport artifact, replace that text with an Agentera routing prompt that preserves the original-message fact and instructs the agent to run `agentera prime` instead of replying with a generic greeting. This is intentionally not a broad greeting detector.
|
|
258
255
|
|
|
259
256
|
4. **PostToolUse** (`tool.execute.after`): After `write` or `edit`, run the shared artifact validator for warnings. This is advisory because the mutation already happened.
|
|
260
257
|
|
|
261
|
-
5. **Compaction context** (`experimental.session.compacting`): Before OpenCode compacts a session, append a bounded Agentera project-state summary generated by `agentera
|
|
258
|
+
5. **Compaction context** (`experimental.session.compacting`): Before OpenCode compacts a session, append a bounded Agentera project-state summary generated by `agentera prime --format json`. This hook is CLI-first by design and does not read `.agentera` artifacts directly.
|
|
262
259
|
|
|
263
260
|
6. **Stop** (`event.type === "session.idle"`): Append a runtime-local bookmark entry under the Agentera data directory capturing artifact changes for next-session continuity.
|
|
264
261
|
|
|
@@ -276,9 +273,11 @@ This keeps the plugin thin while matching the packaged Python script contract.
|
|
|
276
273
|
|
|
277
274
|
Profilera mines five canonical record types from host session data. This section maps each record type to OpenCode's data sources.
|
|
278
275
|
|
|
279
|
-
### memory_entry (
|
|
276
|
+
### memory_entry (retired historical-import extension)
|
|
280
277
|
|
|
281
|
-
**Agentera contract**: This record type is
|
|
278
|
+
**Agentera contract**: This retired-source record type is not part of the
|
|
279
|
+
portable active corpus. It may appear only in explicitly consented historical
|
|
280
|
+
imports and remains excluded from default analytics.
|
|
282
281
|
|
|
283
282
|
**OpenCode source**: OpenCode does not have a built-in memory system. The memory_entry extension does not apply.
|
|
284
283
|
|
|
@@ -315,7 +314,7 @@ Profilera mines five canonical record types from host session data. This section
|
|
|
315
314
|
}
|
|
316
315
|
```
|
|
317
316
|
|
|
318
|
-
**Gap**: None. OpenCode
|
|
317
|
+
**Gap**: None. OpenCode supports remote URLs, glob patterns, and explicit config.
|
|
319
318
|
|
|
320
319
|
### history_prompt
|
|
321
320
|
|
|
@@ -336,7 +335,7 @@ The SDK exposes message history with timestamps, project context, and session me
|
|
|
336
335
|
1. Enumerate sessions via `opencode session list --format json`
|
|
337
336
|
2. Export each session via `opencode export [sessionID]`
|
|
338
337
|
3. Filter for user-originated messages from the export JSON
|
|
339
|
-
4. Apply decision-pattern
|
|
338
|
+
4. Apply the shared decision-pattern classifier to label prompts as `"decision"`, `"correction"`, or `"question"`
|
|
340
339
|
5. Produce history_prompt records with session and project metadata
|
|
341
340
|
|
|
342
341
|
```python
|
|
@@ -400,13 +399,13 @@ The SDK approach remains preferable for programmatic integration (e.g., as an Op
|
|
|
400
399
|
|
|
401
400
|
**OpenCode source**: OpenCode projects are standard filesystem directories. Config files are accessible via direct file reads.
|
|
402
401
|
|
|
403
|
-
**Adapter extraction**:
|
|
402
|
+
**Adapter extraction**: Scan the project root for known config types:
|
|
404
403
|
|
|
405
404
|
- `package.json`, `go.mod`, `Cargo.toml`, `pyproject.toml`
|
|
406
405
|
- `.golangci.yml`, `tsconfig.json`, `ruff.toml`
|
|
407
406
|
- `Makefile`, `magefile.go`, `justfile`, `taskfile.yaml`
|
|
408
407
|
|
|
409
|
-
No runtime-specific adaptation needed
|
|
408
|
+
No runtime-specific adaptation is needed; the config scan is runtime-agnostic.
|
|
410
409
|
|
|
411
410
|
```python
|
|
412
411
|
{
|
|
@@ -436,9 +435,9 @@ Summary of which corpus families the OpenCode adapter can produce:
|
|
|
436
435
|
| Crystallized decisions | instruction_document | Yes | AGENTS.md files (global and project), instructions config |
|
|
437
436
|
| Decision history | history_prompt | Yes (CLI) | `opencode session list --format json` enumerates sessions; `opencode export [sessionID]` provides full message JSON for prompt extraction |
|
|
438
437
|
| Conversation exchanges | conversation_turn | Yes (CLI) | `opencode export [sessionID]` provides full session JSON with paired user-assistant turns |
|
|
439
|
-
| Config patterns | project_config_signal | Yes | Direct filesystem scan
|
|
438
|
+
| Config patterns | project_config_signal | Yes | Direct filesystem scan |
|
|
440
439
|
|
|
441
|
-
**Initial port
|
|
440
|
+
**Initial port profile mode**: Full. All four source families are available via included OpenCode functionality. Crystallized decisions come from AGENTS.md files and instructions config. Decision history and conversation exchanges come from `opencode export` CLI output. Config patterns come from direct filesystem scan.
|
|
442
441
|
|
|
443
442
|
---
|
|
444
443
|
|
|
@@ -510,8 +509,8 @@ OpenCode repair is ownership-gated. Managed slash commands include `agentera_man
|
|
|
510
509
|
|
|
511
510
|
| Gap | Impact | Mitigation |
|
|
512
511
|
|-----|--------|------------|
|
|
513
|
-
| Sub-agent dispatch lacks built-in worktree isolation |
|
|
514
|
-
| `opencode run --format json`
|
|
512
|
+
| Sub-agent dispatch lacks built-in worktree isolation | build/orchestrate run in same working tree | Strategy A (Task tool) for initial port; manual `git worktree` commands for full isolation |
|
|
513
|
+
| `opencode run --format json` uses an OpenCode-specific event schema | Eval runner needs a dedicated parser | Use the OpenCode parser module in eval_skills.py; event stream structure is straightforward |
|
|
515
514
|
| Session history requires JSON event schema mapping | history_prompt and conversation_turn need export parser | `opencode export [sessionID]` provides full session JSON; adapter parses the export output |
|
|
516
515
|
| Python scripts require Python runtime | Hook plugin calls Python via shell | Python is already a prerequisite for agentera scripts |
|
|
517
516
|
|
|
@@ -523,7 +522,7 @@ To verify the adapter is sufficient, check each acceptance criterion from PLAN.m
|
|
|
523
522
|
|
|
524
523
|
1. **Each of the six host capabilities is mapped**: Yes. Skill discovery, artifact resolution, and profile path have direct OpenCode equivalents with no gaps. Sub-agent dispatch maps to the Task tool (with manual git worktree as an alternative). Eval mechanism maps to `opencode run --format json`. Hook lifecycle maps to the plugin event system.
|
|
525
524
|
|
|
526
|
-
2. **Session Corpus Contract is mapped per record type**: Yes. All four portable record types are mapped. instruction_document and project_config_signal have immediate extraction paths. history_prompt and conversation_turn are extractable via `opencode export` CLI output. The
|
|
525
|
+
2. **Session Corpus Contract is mapped per record type**: Yes. All four portable record types are mapped. instruction_document and project_config_signal have immediate extraction paths. history_prompt and conversation_turn are extractable via `opencode export` CLI output. The retired historical-import extension does not apply to OpenCode.
|
|
527
526
|
|
|
528
527
|
3. **A developer can implement OpenCode support without reading skill entry file source**: Yes. This document specifies the adapter mapping, installation steps, extraction logic, and remaining gaps independently.
|
|
529
528
|
|
|
@@ -5,7 +5,7 @@ intent: >
|
|
|
5
5
|
Define the package and release-surface access Interface before introducing an
|
|
6
6
|
executable registry Module. This model records ownership boundaries and the
|
|
7
7
|
validation contract for future PackageManifest records. The executable registry
|
|
8
|
-
at references/adapters/package-registry.yaml and its loader
|
|
8
|
+
at references/adapters/package-registry.yaml and its TypeScript PackageRegistry loader
|
|
9
9
|
now implement this interface; this model remains the authoritative design contract.
|
|
10
10
|
record:
|
|
11
11
|
required_groups:
|
|
@@ -115,7 +115,7 @@ ownership:
|
|
|
115
115
|
explicit future ADR changes persisted authority.
|
|
116
116
|
future_authority_change_requires: explicit ADR
|
|
117
117
|
install_root_delegated:
|
|
118
|
-
owner:
|
|
118
|
+
owner: packages/cli/src/state/installRoot.ts
|
|
119
119
|
forbidden_in_package_manifest:
|
|
120
120
|
- AGENTERA_HOME precedence
|
|
121
121
|
- default app home
|
|
@@ -124,7 +124,7 @@ ownership:
|
|
|
124
124
|
- unmanaged classification
|
|
125
125
|
- app-home diagnostics
|
|
126
126
|
runtime_adapter_delegated:
|
|
127
|
-
owner:
|
|
127
|
+
owner: packages/cli/src/registries/runtimeAdapterRegistry.ts
|
|
128
128
|
forbidden_in_package_manifest:
|
|
129
129
|
- runtime discovery
|
|
130
130
|
- lifecycle events
|
|
@@ -141,10 +141,11 @@ command_safety:
|
|
|
141
141
|
- install-agentera-skill
|
|
142
142
|
approved_runtimes:
|
|
143
143
|
- all
|
|
144
|
-
- claude
|
|
145
144
|
- opencode
|
|
145
|
+
- codex
|
|
146
|
+
- cursor
|
|
147
|
+
- copilot
|
|
146
148
|
approved_runtime_agents:
|
|
147
|
-
- claude-code
|
|
148
149
|
- opencode
|
|
149
150
|
approved_package_tool:
|
|
150
151
|
executable: npx
|
|
@@ -176,9 +177,12 @@ sample_manifest:
|
|
|
176
177
|
- id: registry
|
|
177
178
|
path: registry.json
|
|
178
179
|
selector: skills[0].version
|
|
179
|
-
- id:
|
|
180
|
-
path:
|
|
181
|
-
selector:
|
|
180
|
+
- id: cli-package
|
|
181
|
+
path: packages/cli/package.json
|
|
182
|
+
selector: version
|
|
183
|
+
- id: cli-suite-marker
|
|
184
|
+
path: packages/cli/package.json
|
|
185
|
+
selector: agentera.suiteVersion
|
|
182
186
|
- id: copilot-root
|
|
183
187
|
path: plugin.json
|
|
184
188
|
selector: version
|
|
@@ -188,15 +192,15 @@ sample_manifest:
|
|
|
188
192
|
- id: codex-plugin
|
|
189
193
|
path: .codex-plugin/plugin.json
|
|
190
194
|
selector: version
|
|
191
|
-
- id:
|
|
192
|
-
path: .
|
|
193
|
-
selector:
|
|
194
|
-
- id: claude-marketplace-plugins
|
|
195
|
-
path: .claude-plugin/marketplace.json
|
|
196
|
-
selector: plugins[*].version
|
|
195
|
+
- id: cursor-plugin
|
|
196
|
+
path: .cursor-plugin/plugin.json
|
|
197
|
+
selector: version
|
|
197
198
|
- id: opencode-plugin-marker
|
|
198
199
|
path: .opencode/plugins/agentera.js
|
|
199
200
|
selector: AGENTERA_VERSION
|
|
201
|
+
- id: skill-frontmatter
|
|
202
|
+
path: skills/agentera/SKILL.md
|
|
203
|
+
selector: frontmatter.version
|
|
200
204
|
excluded_runtime_manifests:
|
|
201
205
|
- .opencode/package.json
|
|
202
206
|
runtime_package_manifests:
|
|
@@ -213,28 +217,27 @@ sample_manifest:
|
|
|
213
217
|
path: .codex-plugin/plugin.json
|
|
214
218
|
version_bearing: true
|
|
215
219
|
package_shape: suite-bundle
|
|
216
|
-
- runtime:
|
|
217
|
-
path: .
|
|
220
|
+
- runtime: cursor
|
|
221
|
+
path: .cursor-plugin/plugin.json
|
|
218
222
|
version_bearing: true
|
|
219
223
|
package_shape: suite-bundle
|
|
220
224
|
- runtime: opencode
|
|
221
225
|
path: .opencode/package.json
|
|
222
226
|
version_bearing: false
|
|
223
|
-
package_shape:
|
|
227
|
+
package_shape: npm-loadable-plugin
|
|
224
228
|
shared_paths_policy: validate minimum shared paths separately from full bundle includes
|
|
225
229
|
bundle_surfaces:
|
|
226
230
|
directories:
|
|
227
231
|
- skills
|
|
228
|
-
- scripts
|
|
229
|
-
- hooks
|
|
230
232
|
- references
|
|
231
233
|
- agents
|
|
232
|
-
-
|
|
233
|
-
- .codex-plugin
|
|
234
|
-
- .claude-plugin
|
|
234
|
+
- hooks
|
|
235
235
|
- .github/hooks
|
|
236
|
-
- .
|
|
236
|
+
- .codex-plugin
|
|
237
|
+
- .cursor-plugin
|
|
238
|
+
- .cursor/agents
|
|
237
239
|
- .opencode/commands
|
|
240
|
+
- .opencode/agents
|
|
238
241
|
- .opencode/plugins
|
|
239
242
|
files:
|
|
240
243
|
- README.md
|
|
@@ -242,11 +245,11 @@ sample_manifest:
|
|
|
242
245
|
- CHANGELOG.md
|
|
243
246
|
- DESIGN.md
|
|
244
247
|
- LICENSE
|
|
245
|
-
- pyproject.toml
|
|
246
|
-
- uv.lock
|
|
247
248
|
- registry.json
|
|
248
249
|
- plugin.json
|
|
250
|
+
- .github/plugin/plugin.json
|
|
249
251
|
- .opencode/package.json
|
|
252
|
+
- .cursor/hooks.json
|
|
250
253
|
skip_parts:
|
|
251
254
|
- __pycache__
|
|
252
255
|
- .pytest_cache
|
|
@@ -278,21 +281,6 @@ sample_manifest:
|
|
|
278
281
|
- -g
|
|
279
282
|
- -y
|
|
280
283
|
skipped_without_update_packages_message: legacy skill removal skipped; pass --update-packages to run
|
|
281
|
-
- runtime: claude
|
|
282
|
-
action: install-agentera-skill
|
|
283
|
-
phase: runtime-install
|
|
284
|
-
argv:
|
|
285
|
-
- npx
|
|
286
|
-
- skills
|
|
287
|
-
- add
|
|
288
|
-
- jgabor/agentera
|
|
289
|
-
- -g
|
|
290
|
-
- -a
|
|
291
|
-
- claude-code
|
|
292
|
-
- --skill
|
|
293
|
-
- agentera
|
|
294
|
-
- -y
|
|
295
|
-
skipped_without_update_packages_message: external package update skipped; pass --update-packages to run
|
|
296
284
|
- runtime: opencode
|
|
297
285
|
action: install-agentera-skill
|
|
298
286
|
phase: runtime-install
|
|
@@ -318,17 +306,18 @@ sample_manifest:
|
|
|
318
306
|
docs_targets:
|
|
319
307
|
version_files_source: .agentera/docs.yaml conventions.version_files
|
|
320
308
|
version_files:
|
|
321
|
-
-
|
|
322
|
-
- uv.lock
|
|
309
|
+
- packages/cli/package.json
|
|
323
310
|
- plugin.json
|
|
324
311
|
- .github/plugin/plugin.json
|
|
325
312
|
- .codex-plugin/plugin.json
|
|
326
|
-
- .
|
|
313
|
+
- .cursor-plugin/plugin.json
|
|
327
314
|
- .opencode/plugins/agentera.js
|
|
315
|
+
- skills/agentera/SKILL.md
|
|
328
316
|
- registry.json
|
|
329
317
|
index_targets:
|
|
330
318
|
- references/adapters/package-surface-characterization.md
|
|
331
319
|
- references/adapters/package-manifest-interface-model.yaml
|
|
320
|
+
- references/adapters/package-registry.yaml
|
|
332
321
|
excluded_version_files:
|
|
333
322
|
- .opencode/package.json
|
|
334
323
|
release_policy:
|
|
@@ -17,9 +17,12 @@ records:
|
|
|
17
17
|
- id: registry
|
|
18
18
|
path: registry.json
|
|
19
19
|
selector: skills[0].version
|
|
20
|
-
- id:
|
|
21
|
-
path:
|
|
22
|
-
selector:
|
|
20
|
+
- id: cli-package
|
|
21
|
+
path: packages/cli/package.json
|
|
22
|
+
selector: version
|
|
23
|
+
- id: cli-suite-marker
|
|
24
|
+
path: packages/cli/package.json
|
|
25
|
+
selector: agentera.suiteVersion
|
|
23
26
|
- id: copilot-root
|
|
24
27
|
path: plugin.json
|
|
25
28
|
selector: version
|
|
@@ -29,15 +32,15 @@ records:
|
|
|
29
32
|
- id: codex-plugin
|
|
30
33
|
path: .codex-plugin/plugin.json
|
|
31
34
|
selector: version
|
|
32
|
-
- id:
|
|
33
|
-
path: .
|
|
34
|
-
selector:
|
|
35
|
-
- id: claude-marketplace-plugins
|
|
36
|
-
path: .claude-plugin/marketplace.json
|
|
37
|
-
selector: plugins[*].version
|
|
35
|
+
- id: cursor-plugin
|
|
36
|
+
path: .cursor-plugin/plugin.json
|
|
37
|
+
selector: version
|
|
38
38
|
- id: opencode-plugin-marker
|
|
39
39
|
path: .opencode/plugins/agentera.js
|
|
40
40
|
selector: AGENTERA_VERSION
|
|
41
|
+
- id: skill-frontmatter
|
|
42
|
+
path: skills/agentera/SKILL.md
|
|
43
|
+
selector: frontmatter.version
|
|
41
44
|
excluded_runtime_manifests:
|
|
42
45
|
- .opencode/package.json
|
|
43
46
|
runtime_package_manifests:
|
|
@@ -62,11 +65,6 @@ records:
|
|
|
62
65
|
path: .cursor-plugin/plugin.json
|
|
63
66
|
version_bearing: true
|
|
64
67
|
package_shape: suite-bundle
|
|
65
|
-
- id: claude-marketplace-manifest
|
|
66
|
-
runtime: claude
|
|
67
|
-
path: .claude-plugin/marketplace.json
|
|
68
|
-
version_bearing: true
|
|
69
|
-
package_shape: suite-bundle
|
|
70
68
|
- id: opencode-package-manifest
|
|
71
69
|
runtime: opencode
|
|
72
70
|
path: .opencode/package.json
|
|
@@ -76,9 +74,6 @@ records:
|
|
|
76
74
|
- id: skills
|
|
77
75
|
path: skills
|
|
78
76
|
kind: dir
|
|
79
|
-
- id: scripts
|
|
80
|
-
path: scripts
|
|
81
|
-
kind: dir
|
|
82
77
|
- id: hooks
|
|
83
78
|
path: hooks
|
|
84
79
|
kind: dir
|
|
@@ -99,28 +94,20 @@ records:
|
|
|
99
94
|
directories:
|
|
100
95
|
- id: skills
|
|
101
96
|
path: skills
|
|
102
|
-
- id: scripts
|
|
103
|
-
path: scripts
|
|
104
|
-
- id: hooks
|
|
105
|
-
path: hooks
|
|
106
97
|
- id: references
|
|
107
98
|
path: references
|
|
108
99
|
- id: agents
|
|
109
100
|
path: agents
|
|
110
|
-
- id:
|
|
111
|
-
path:
|
|
101
|
+
- id: hooks
|
|
102
|
+
path: hooks
|
|
103
|
+
- id: github-hooks
|
|
104
|
+
path: .github/hooks
|
|
112
105
|
- id: codex-plugin
|
|
113
106
|
path: .codex-plugin
|
|
114
107
|
- id: cursor-plugin
|
|
115
108
|
path: .cursor-plugin
|
|
116
109
|
- id: cursor-agents
|
|
117
110
|
path: .cursor/agents
|
|
118
|
-
- id: claude-plugin
|
|
119
|
-
path: .claude-plugin
|
|
120
|
-
- id: github-hooks
|
|
121
|
-
path: .github/hooks
|
|
122
|
-
- id: github-plugin
|
|
123
|
-
path: .github/plugin
|
|
124
111
|
- id: opencode-commands
|
|
125
112
|
path: .opencode/commands
|
|
126
113
|
- id: opencode-agents
|
|
@@ -138,14 +125,12 @@ records:
|
|
|
138
125
|
path: DESIGN.md
|
|
139
126
|
- id: license
|
|
140
127
|
path: LICENSE
|
|
141
|
-
- id: python-project
|
|
142
|
-
path: pyproject.toml
|
|
143
|
-
- id: python-lock
|
|
144
|
-
path: uv.lock
|
|
145
128
|
- id: registry
|
|
146
129
|
path: registry.json
|
|
147
130
|
- id: copilot-root-manifest
|
|
148
131
|
path: plugin.json
|
|
132
|
+
- id: copilot-repository-manifest
|
|
133
|
+
path: .github/plugin/plugin.json
|
|
149
134
|
- id: opencode-package-manifest
|
|
150
135
|
path: .opencode/package.json
|
|
151
136
|
- id: cursor-hooks
|
|
@@ -182,22 +167,6 @@ records:
|
|
|
182
167
|
- -g
|
|
183
168
|
- -y
|
|
184
169
|
skipped_without_update_packages_message: legacy skill removal skipped; pass --update-packages to run
|
|
185
|
-
- id: install-agentera-skill-claude
|
|
186
|
-
runtime: claude
|
|
187
|
-
action: install-agentera-skill
|
|
188
|
-
phase: runtime-install
|
|
189
|
-
argv:
|
|
190
|
-
- npx
|
|
191
|
-
- skills
|
|
192
|
-
- add
|
|
193
|
-
- jgabor/agentera
|
|
194
|
-
- -g
|
|
195
|
-
- -a
|
|
196
|
-
- claude-code
|
|
197
|
-
- --skill
|
|
198
|
-
- agentera
|
|
199
|
-
- -y
|
|
200
|
-
skipped_without_update_packages_message: external package update skipped; pass --update-packages to run
|
|
201
170
|
- id: install-agentera-skill-opencode
|
|
202
171
|
runtime: opencode
|
|
203
172
|
action: install-agentera-skill
|
|
@@ -224,16 +193,13 @@ records:
|
|
|
224
193
|
docs_targets:
|
|
225
194
|
version_files_source: .agentera/docs.yaml conventions.version_files
|
|
226
195
|
version_files:
|
|
227
|
-
-
|
|
228
|
-
- uv.lock
|
|
196
|
+
- packages/cli/package.json
|
|
229
197
|
- plugin.json
|
|
230
198
|
- .github/plugin/plugin.json
|
|
231
199
|
- .codex-plugin/plugin.json
|
|
232
200
|
- .cursor-plugin/plugin.json
|
|
233
|
-
- .claude-plugin/marketplace.json
|
|
234
201
|
- .opencode/plugins/agentera.js
|
|
235
202
|
- skills/agentera/SKILL.md
|
|
236
|
-
- skills/hej/SKILL.md
|
|
237
203
|
- registry.json
|
|
238
204
|
index_targets:
|
|
239
205
|
- references/adapters/package-surface-characterization.md
|