agentera 3.0.0-dev.15 → 3.0.0-dev.16
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 +43 -22
- 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 +1075 -0
- package/bundle/DESIGN.md +233 -0
- package/bundle/LICENSE +201 -0
- package/bundle/README.md +137 -0
- package/bundle/UPGRADE.md +188 -0
- package/bundle/agents/openai.yaml +87 -0
- package/bundle/extract-corpus-parity.json +2 -4
- 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 +50 -40
- package/bundle/references/adapters/opencode.md +22 -23
- package/bundle/references/adapters/package-manifest-interface-model.yaml +36 -43
- package/bundle/references/adapters/package-registry.yaml +19 -52
- package/bundle/references/adapters/package-surface-characterization.md +61 -47
- package/bundle/references/adapters/runtime-adapter-characterization.md +44 -79
- package/bundle/references/adapters/runtime-adapter-registry.yaml +7 -169
- package/bundle/references/adapters/runtime-feature-parity.md +99 -167
- package/bundle/references/adapters/runtime-lifecycle-adapters.yaml +288 -0
- package/bundle/references/adapters/runtime-lifecycle-authority.yaml +73 -0
- package/bundle/references/adapters/runtime-lifecycle-operation-contract.yaml +83 -0
- package/bundle/references/adapters/runtime-retired-resources.yaml +33 -0
- package/bundle/references/analysis/benchmark.md +5 -5
- package/bundle/references/analysis/startup-measurement-contract.yaml +19 -8
- package/bundle/references/cli/bundle-skill-vocabulary.yaml +2 -2
- package/bundle/references/cli/vocabulary-index.yaml +1 -1
- package/bundle/references/cli/vocabulary.md +7 -7
- package/bundle/skills/agentera/references/contract.md +10 -3
- package/dist/analytics/extractCorpus/cli.js +19 -5
- package/dist/analytics/extractCorpus/cli.js.map +1 -1
- package/dist/analytics/extractCorpus/copilotSessions.js +6 -3
- package/dist/analytics/extractCorpus/copilotSessions.js.map +1 -1
- package/dist/analytics/extractCorpus/core.js +40 -11
- package/dist/analytics/extractCorpus/core.js.map +1 -1
- package/dist/analytics/extractCorpus/corpus.js +39 -16
- package/dist/analytics/extractCorpus/corpus.js.map +1 -1
- package/dist/analytics/extractCorpus/coverageAudit.js +44 -44
- package/dist/analytics/extractCorpus/coverageAudit.js.map +1 -1
- package/dist/analytics/extractCorpus/cursorSessions.js +6 -3
- package/dist/analytics/extractCorpus/cursorSessions.js.map +1 -1
- package/dist/analytics/extractCorpus/extractCorpusParity.js +2 -2
- package/dist/analytics/extractCorpus/extractCorpusParity.js.map +1 -1
- package/dist/analytics/extractCorpus/filesystemSources.js +1 -4
- package/dist/analytics/extractCorpus/filesystemSources.js.map +1 -1
- package/dist/analytics/extractCorpus/jsonlSessions.js +24 -4
- package/dist/analytics/extractCorpus/jsonlSessions.js.map +1 -1
- package/dist/analytics/usageStats.js +51 -7
- 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/discuss/instructions.js +1 -1
- package/dist/capabilities/discuss/instructions.js.map +1 -1
- package/dist/capabilities/orchestrate/instructions.js +1 -1
- package/dist/capabilities/orchestrate/instructions.js.map +1 -1
- package/dist/capabilities/profile/instructions.js +1 -1
- package/dist/capabilities/profile/instructions.js.map +1 -1
- package/dist/cli/capabilityContext/startup.js +1 -0
- package/dist/cli/capabilityContext/startup.js.map +1 -1
- package/dist/cli/commands/doctor.js +66 -4
- package/dist/cli/commands/doctor.js.map +1 -1
- package/dist/cli/commands/prime/collectOrientationState.js +15 -1
- package/dist/cli/commands/prime/collectOrientationState.js.map +1 -1
- package/dist/cli/commands/prime/orientationOutput.js +12 -1
- package/dist/cli/commands/prime/orientationOutput.js.map +1 -1
- package/dist/cli/commands/report.js +19 -4
- package/dist/cli/commands/report.js.map +1 -1
- package/dist/cli/commands/schema.js +75 -3
- package/dist/cli/commands/schema.js.map +1 -1
- package/dist/cli/commands/upgrade.js +18 -2
- package/dist/cli/commands/upgrade.js.map +1 -1
- package/dist/cli/commands/verify.js +6 -6
- package/dist/cli/commands/verify.js.map +1 -1
- package/dist/cli/dispatch/lifecycle.js +71 -3
- package/dist/cli/dispatch/lifecycle.js.map +1 -1
- package/dist/cli/help.js +18 -6
- package/dist/cli/help.js.map +1 -1
- package/dist/cli/startupCompletenessContract.js +1 -1
- package/dist/cli/startupCompletenessContract.js.map +1 -1
- package/dist/eval/evalSkills.js +13 -13
- package/dist/eval/evalSkills.js.map +1 -1
- package/dist/hooks/validateArtifact/runtime.js +4 -4
- package/dist/migrate/v2HandoffManifest.js +4 -0
- package/dist/migrate/v2HandoffManifest.js.map +1 -1
- package/dist/registries/packageRegistry.js +36 -3
- package/dist/registries/packageRegistry.js.map +1 -1
- package/dist/registries/runtimeAdapterRegistry.js +22 -16
- package/dist/registries/runtimeAdapterRegistry.js.map +1 -1
- package/dist/runtime/lifecycleAdapterContract.js +436 -0
- package/dist/runtime/lifecycleAdapterContract.js.map +1 -0
- package/dist/runtime/lifecycleAdapters.js +707 -0
- package/dist/runtime/lifecycleAdapters.js.map +1 -0
- package/dist/runtime/lifecycleAuthority.js +443 -0
- package/dist/runtime/lifecycleAuthority.js.map +1 -0
- package/dist/runtime/lifecycleOperationContract.js +109 -0
- package/dist/runtime/lifecycleOperationContract.js.map +1 -0
- package/dist/runtime/lifecycleOperations.js +627 -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 +174 -0
- package/dist/runtime/lifecycleSnapshot.js.map +1 -0
- package/dist/runtime/retiredRuntimeCleanup.js +232 -0
- package/dist/runtime/retiredRuntimeCleanup.js.map +1 -0
- package/dist/setup/codex/installRoot.js +1 -1
- package/dist/setup/codex/installRoot.js.map +1 -1
- package/dist/setup/copilot.js +1 -1
- package/dist/setup/copilot.js.map +1 -1
- package/dist/setup/cursor.js +1 -1
- package/dist/setup/cursor.js.map +1 -1
- package/dist/setup/doctor/core.js +3 -3
- package/dist/setup/doctor/core.js.map +1 -1
- package/dist/setup/doctor/diagnostics.js +0 -39
- package/dist/setup/doctor/diagnostics.js.map +1 -1
- package/dist/setup/smokeChecks.js +1 -3
- package/dist/setup/smokeChecks.js.map +1 -1
- package/dist/upgrade/appContentRefresh.js +8 -1
- package/dist/upgrade/appContentRefresh.js.map +1 -1
- package/dist/upgrade/doctor.js +4 -0
- package/dist/upgrade/doctor.js.map +1 -1
- package/dist/upgrade/lifecycleUpgrade.js +386 -0
- package/dist/upgrade/lifecycleUpgrade.js.map +1 -0
- package/dist/upgrade/migrateArtifactsV2ToV3.js.map +1 -1
- package/dist/upgrade/runtimeMigration.js +1 -8
- 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/upgradeOrchestrator.js +148 -5
- package/dist/upgrade/upgradeOrchestrator.js.map +1 -1
- package/dist/validate/appHomeContract.js +1 -1
- package/dist/validate/appHomeContract.js.map +1 -1
- package/dist/validate/lifecycleAdapters/nodeFormChecks.js +2 -9
- package/dist/validate/lifecycleAdapters/nodeFormChecks.js.map +1 -1
- package/dist/validate/lifecycleAdapters/shared.js +1 -1
- package/dist/validate/lifecycleAdapters/shared.js.map +1 -1
- package/dist/validate/lifecycleAdapters.js +77 -2
- package/dist/validate/lifecycleAdapters.js.map +1 -1
- package/package.json +1 -1
- package/bundle/skills/agentera/.claude-plugin/plugin.json +0 -27
package/README.md
CHANGED
|
@@ -1,43 +1,64 @@
|
|
|
1
|
-
# Agentera CLI
|
|
1
|
+
# Agentera CLI
|
|
2
2
|
|
|
3
|
-
Native TypeScript CLI for Agentera 3.
|
|
3
|
+
Native TypeScript CLI for Agentera 3.0, published as
|
|
4
|
+
[`agentera`](https://www.npmjs.com/package/agentera). The npm package is
|
|
5
|
+
self-contained: compiled commands live in `dist/` and runtime data, manifests,
|
|
6
|
+
hooks, agents, skills, contracts, and documentation live in `bundle/`.
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
| --- | --- | --- |
|
|
7
|
-
| `@latest` | stable (2.x) | Supported production line |
|
|
8
|
-
| `@next` | development (3.x pre-releases) | Early testing of the self-contained npm CLI |
|
|
9
|
-
|
|
10
|
-
## Quick start
|
|
8
|
+
Until the stable dist-tag is promoted, run 3.0 through `@next`:
|
|
11
9
|
|
|
12
10
|
```bash
|
|
13
11
|
npx -y agentera@next prime --format json
|
|
14
|
-
npx -y agentera@next
|
|
12
|
+
npx -y agentera@next doctor --format json
|
|
15
13
|
```
|
|
16
14
|
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
`prime` returns a bounded project and four-runtime lifecycle summary. `doctor`
|
|
16
|
+
returns detailed read-only evidence and exact user actions.
|
|
19
17
|
|
|
20
|
-
|
|
18
|
+
## Runtime lifecycle
|
|
21
19
|
|
|
22
|
-
|
|
20
|
+
The four active runtimes are OpenCode, Codex, Cursor, and GitHub Copilot; their
|
|
21
|
+
IDs are exactly `opencode`, `codex`, `cursor`, and `copilot`.
|
|
22
|
+
Cursor Agent CLI and Cursor IDE are surfaces of one `cursor` identity; CLI is
|
|
23
|
+
required and IDE is conditional. The canonical shared skill path is
|
|
24
|
+
`~/.agents/skills/agentera`.
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
```bash
|
|
27
|
+
npx -y agentera@next upgrade --runtime all --dry-run
|
|
28
|
+
npx -y agentera@next upgrade --runtime all --yes
|
|
29
|
+
```
|
|
25
30
|
|
|
26
|
-
|
|
31
|
+
Use one active ID instead of `all` to scope the operation. `--dry-run` has zero
|
|
32
|
+
filesystem or state side effects. `--yes` approves only declared Agentera-owned
|
|
33
|
+
operations; native install/update, authentication, enablement, and trust remain
|
|
34
|
+
user-owned. Secure automatic apply is Linux-only and reports
|
|
35
|
+
`action_required` elsewhere.
|
|
27
36
|
|
|
28
|
-
|
|
29
|
-
- `bundle/` — shipped app data (`skills/`, `references/`, `registry.json`)
|
|
37
|
+
Retired Claude cleanup is intentionally separate:
|
|
30
38
|
|
|
31
|
-
|
|
39
|
+
```bash
|
|
40
|
+
npx -y agentera@next upgrade --legacy-cleanup claude --dry-run
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
It can remove only the exact Agentera-owned legacy link. Historical transcript
|
|
44
|
+
import is also explicit (`agentera report refresh --import-source claude`) and
|
|
45
|
+
is excluded from default active-runtime analytics.
|
|
46
|
+
|
|
47
|
+
See [UPGRADE.md](../../UPGRADE.md) for ownership, recovery, and migration
|
|
48
|
+
details and [runtime feature parity](../../references/adapters/runtime-feature-parity.md)
|
|
49
|
+
for host-specific behavior.
|
|
32
50
|
|
|
33
51
|
## Contributors
|
|
34
52
|
|
|
35
|
-
|
|
53
|
+
Requires Node.js 22+ and pnpm 10.30.3.
|
|
36
54
|
|
|
37
55
|
```bash
|
|
38
|
-
pnpm -C packages/cli build
|
|
39
56
|
pnpm -C packages/cli test
|
|
40
|
-
pnpm -C packages/cli run
|
|
57
|
+
pnpm -C packages/cli run typecheck
|
|
58
|
+
pnpm -C packages/cli build
|
|
59
|
+
pnpm -C packages/cli run lint
|
|
41
60
|
```
|
|
42
61
|
|
|
43
|
-
|
|
62
|
+
Use `npm pack --dry-run --json --ignore-scripts` after `build` and
|
|
63
|
+
`bundle:data` to inspect the exact publication surface. Do not publish from a
|
|
64
|
+
normal development or capability cycle.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentera",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Compound agent orchestration suite \u2014 12 capabilities in one bundled skill; exact bare /agentera belongs to the bundled agentera dashboard path",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jonathan Gabor",
|
|
7
|
+
"url": "https://github.com/jgabor"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/jgabor/agentera",
|
|
10
|
+
"repository": "https://github.com/jgabor/agentera",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"keywords": ["agentera", "skills", "agents", "coding", "memory", "orchestration"],
|
|
13
|
+
"skills": "./skills/",
|
|
14
|
+
"hooks": "./hooks/codex-plugin-hooks.json",
|
|
15
|
+
"interface": {
|
|
16
|
+
"displayName": "Agentera",
|
|
17
|
+
"shortDescription": "Portable skills that give Codex exact bare /agentera routing, project memory, planning, execution, and review workflows.",
|
|
18
|
+
"longDescription": "Agentera turns Codex into a coordinated engineering partner with shared project artifacts, decision memory, planning, autonomous execution, audits, documentation, visual identity, research, optimization, and orchestration. A complete user message exactly `/agentera` belongs to the bundled agentera skill and its agentera status dashboard path, not the legacy hej bridge.",
|
|
19
|
+
"developerName": "Jonathan Gabor",
|
|
20
|
+
"category": "Coding",
|
|
21
|
+
"capabilities": ["Interactive", "Read", "Write"],
|
|
22
|
+
"websiteURL": "https://github.com/jgabor/agentera",
|
|
23
|
+
"privacyPolicyURL": "https://github.com/jgabor/agentera",
|
|
24
|
+
"termsOfServiceURL": "https://github.com/jgabor/agentera/blob/main/LICENSE",
|
|
25
|
+
"defaultPrompt": [
|
|
26
|
+
"Use $agentera to inspect this project and suggest the next best action. If the complete user message is exactly `/agentera`, use $agentera's status dashboard path."
|
|
27
|
+
],
|
|
28
|
+
"brandColor": "#111827",
|
|
29
|
+
"screenshots": []
|
|
30
|
+
},
|
|
31
|
+
"codex": {
|
|
32
|
+
"uiMetadata": "./agents/openai.yaml",
|
|
33
|
+
"discovery": {
|
|
34
|
+
"skills": "/skills",
|
|
35
|
+
"plugins": "/plugins"
|
|
36
|
+
},
|
|
37
|
+
"invocationHint": "Use $agentera for explicit invocation. If the complete user message is exactly `/agentera`, route it through $agentera and the status dashboard path; $hej is only a legacy explicit bridge.",
|
|
38
|
+
"limitations": [
|
|
39
|
+
"profile collects bounded Codex session corpus data when present and reports any absent source families in corpus metadata.",
|
|
40
|
+
"Agentera lifecycle upgrade can install the canonical shared skill and Agentera-owned hooks or agents. AGENTERA_HOME configuration, Codex plugin enablement, and trust remain user-owned."
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"agentera": {
|
|
44
|
+
"packageShape": "suite-bundle",
|
|
45
|
+
"installRoot": "..",
|
|
46
|
+
"sharedPaths": ["skills", "hooks", "registry.json", "plugin.json", "README.md", "UPGRADE.md"],
|
|
47
|
+
"singleSkillInstall": "Single-skill installs keep core SKILL.md workflow behavior; suite tools are bundle-only enhancements."
|
|
48
|
+
},
|
|
49
|
+
"lifecycleHooks": {
|
|
50
|
+
"runtime": "codex-cli",
|
|
51
|
+
"status": "stable",
|
|
52
|
+
"configured": false,
|
|
53
|
+
"limitations": [
|
|
54
|
+
"codex_hooks ships stable and default-on as of v0.124.0 (2026-04-23). The bundled hooks/codex-hooks.json wires apply_patch PreToolUse and PostToolUse handlers per openai/codex#18391 (merged 2026-04-22).",
|
|
55
|
+
"The shipped Codex hook config validates touched artifact paths through `npx -y agentera hook validate-artifact`, but it does not reconstruct final patch content for hard-gate validation. SessionStart and Stop are supported by the runtime but are not wired by the bundled config."
|
|
56
|
+
],
|
|
57
|
+
"supportedEvents": [
|
|
58
|
+
"SessionStart",
|
|
59
|
+
"Stop",
|
|
60
|
+
"UserPromptSubmit",
|
|
61
|
+
"PreToolUse",
|
|
62
|
+
"PostToolUse",
|
|
63
|
+
"PermissionRequest"
|
|
64
|
+
],
|
|
65
|
+
"unsupportedEvents": [
|
|
66
|
+
{
|
|
67
|
+
"event": "SubagentStop",
|
|
68
|
+
"reason": "This event is outside the supported Codex lifecycle contract."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"event": "PreCompact",
|
|
72
|
+
"reason": "This event is outside the supported Codex lifecycle contract."
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"event": "Notification",
|
|
76
|
+
"reason": "This event is outside the supported Codex lifecycle contract."
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"skillMetadata": [
|
|
81
|
+
{
|
|
82
|
+
"name": "agentera",
|
|
83
|
+
"description": "Compound agent orchestration suite \u2014 12 capabilities in one bundled skill; use for exact bare /agentera dashboard routing",
|
|
84
|
+
"path": "./skills/agentera",
|
|
85
|
+
"runtimeSupport": "portable",
|
|
86
|
+
"invocationHint": "$agentera; for a complete bare `/agentera`, use the agentera status dashboard path",
|
|
87
|
+
"policy": {
|
|
88
|
+
"allow_implicit_invocation": true
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Turn your coding agent into an engineering team.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<!-- agentera: managed -->
|
|
6
|
+
|
|
7
|
+
Load the Agentera skill for request routing and project orientation. When a capability is invoked, run `agentera prime --context build --format json` (or the relevant capability name) to fetch the authoritative instructions as a JSON capsule, then dispatch to a general-purpose subagent with the `prose` field as the task prompt. Do not invent unsupported capability-name CLI commands. Do not invoke per-capability subagents; the single Agentera agent handles all capability dispatch.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"description": "agentera v3 Cursor IDE hooks (camelCase lifecycle events sessionStart, sessionEnd, preToolUse, postToolUse): session context export, artifact hard gate, and advisory validation",
|
|
4
|
+
"hooks": {
|
|
5
|
+
"sessionStart": [
|
|
6
|
+
{
|
|
7
|
+
"command": "npx -y agentera@next hook cursor-session-start",
|
|
8
|
+
"timeout": 15
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"sessionEnd": [
|
|
12
|
+
{
|
|
13
|
+
"command": "npx -y agentera@next hook session-stop",
|
|
14
|
+
"timeout": 15
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"preToolUse": [
|
|
18
|
+
{
|
|
19
|
+
"command": "npx -y agentera@next hook cursor-pre-tool-use",
|
|
20
|
+
"matcher": "Write|Edit",
|
|
21
|
+
"timeout": 15
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"postToolUse": [
|
|
25
|
+
{
|
|
26
|
+
"command": "npx -y agentera@next hook validate-artifact",
|
|
27
|
+
"matcher": "Write|Edit",
|
|
28
|
+
"timeout": 15
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentera",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Agentera compound agent orchestration suite — twelve capabilities in one bundled skill; exact bare /agentera belongs to the bundled agentera dashboard path. Cloud agents are unsupported in v1.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jonathan Gabor",
|
|
7
|
+
"url": "https://github.com/jgabor"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/jgabor/agentera",
|
|
10
|
+
"repository": "https://github.com/jgabor/agentera",
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"keywords": ["agentera", "skills", "agents", "orchestration", "planning", "memory"],
|
|
13
|
+
"skills": "./skills/",
|
|
14
|
+
"hooks": "./.cursor/hooks.json",
|
|
15
|
+
"agents": "./.cursor/agents/",
|
|
16
|
+
"agentera": {
|
|
17
|
+
"packageShape": "suite-bundle",
|
|
18
|
+
"installRoot": "..",
|
|
19
|
+
"sharedPaths": ["skills", "hooks", "registry.json", "plugin.json", "README.md", "UPGRADE.md"],
|
|
20
|
+
"singleSkillInstall": "Single-skill installs keep core SKILL.md workflow behavior; suite tools are bundle-only enhancements."
|
|
21
|
+
},
|
|
22
|
+
"cursor": {
|
|
23
|
+
"limitations": [
|
|
24
|
+
"Cloud agents are unsupported in v1; use repo-native or upgraded project hooks and managed agents instead.",
|
|
25
|
+
"Bare /agentera routing is metadata-only; use the bundled agentera skill and status dashboard path explicitly.",
|
|
26
|
+
"Conditional hard-gate validation for reconstructable Write and Edit candidates is verified after live preToolUse Write smoke (2026-05-24); release tagging remains blocked pending broader release closeout."
|
|
27
|
+
],
|
|
28
|
+
"distribution": {
|
|
29
|
+
"repoNativeHooks": ".cursor/hooks.json",
|
|
30
|
+
"managedAgents": ".cursor/agents/",
|
|
31
|
+
"marketplaceManifest": ".cursor-plugin/plugin.json"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "agentera v3 GitHub Copilot CLI hook (camelCase name field postToolUse): advisory artifact validation after Edit or Write",
|
|
3
|
+
"name": "postToolUse",
|
|
4
|
+
"matcher": "Edit|Write",
|
|
5
|
+
"type": "command",
|
|
6
|
+
"bash": "npx -y agentera@next hook validate-artifact",
|
|
7
|
+
"powershell": "npx -y agentera@next hook validate-artifact",
|
|
8
|
+
"timeoutSec": 10
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "agentera v3 GitHub Copilot CLI hook (camelCase name field preToolUse): artifact hard gate before tool use",
|
|
3
|
+
"name": "preToolUse",
|
|
4
|
+
"type": "command",
|
|
5
|
+
"bash": "npx -y agentera@next hook validate-artifact",
|
|
6
|
+
"powershell": "npx -y agentera@next hook validate-artifact",
|
|
7
|
+
"timeoutSec": 10
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "agentera v3 GitHub Copilot CLI hook (camelCase name field sessionEnd): session bookmark persistence",
|
|
3
|
+
"name": "sessionEnd",
|
|
4
|
+
"type": "command",
|
|
5
|
+
"bash": "npx -y agentera@next hook session-stop",
|
|
6
|
+
"powershell": "npx -y agentera@next hook session-stop",
|
|
7
|
+
"timeoutSec": 10
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"description": "agentera v3 GitHub Copilot CLI hook (camelCase name field sessionStart): session context preload",
|
|
3
|
+
"name": "sessionStart",
|
|
4
|
+
"type": "command",
|
|
5
|
+
"bash": "npx -y agentera@next hook session-start",
|
|
6
|
+
"powershell": "npx -y agentera@next hook session-start",
|
|
7
|
+
"timeoutSec": 10
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentera",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Agentera 3.0.0 for GitHub Copilot CLI: one portable skill, twelve capabilities, shared project state, lifecycle hooks, and exact /agentera dashboard routing. profile uses bounded Copilot corpus metadata when present and reports missing source families. Runtime installation, enablement, authentication, and trust remain user-owned.",
|
|
5
|
+
"skills": "../../skills",
|
|
6
|
+
"hooks": "../hooks"
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
color: "#fcd116"
|
|
3
|
+
description: Turn your coding agent into an engineering team.
|
|
4
|
+
mode: primary
|
|
5
|
+
permission:
|
|
6
|
+
write: allow
|
|
7
|
+
bash: allow
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
<!-- agentera: managed -->
|
|
11
|
+
|
|
12
|
+
Load the Agentera skill for request routing and project orientation. When a capability is invoked, run `agentera prime --context build --format json` (or the relevant capability name) to fetch the authoritative instructions as a JSON capsule, then dispatch to a general-purpose subagent with the `prose` field as the task prompt. Do not invent unsupported capability-name CLI commands. Do not invoke per-capability subagents; the single Agentera agent handles all capability dispatch.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files": [
|
|
3
|
+
"plugins/agentera.js",
|
|
4
|
+
"commands",
|
|
5
|
+
"agents",
|
|
6
|
+
"package.json"
|
|
7
|
+
],
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "./plugins/agentera.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./plugins/agentera.js"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@opencode-ai/plugin": "1.14.33"
|
|
15
|
+
},
|
|
16
|
+
"agentera": {
|
|
17
|
+
"packageShape": "npm-loadable-plugin",
|
|
18
|
+
"opencodePlugin": "./plugins/agentera.js",
|
|
19
|
+
"localPluginPath": ".opencode/plugins/agentera.js",
|
|
20
|
+
"installRoot": "..",
|
|
21
|
+
"sharedPaths": [
|
|
22
|
+
"skills",
|
|
23
|
+
"hooks",
|
|
24
|
+
"registry.json",
|
|
25
|
+
"plugin.json",
|
|
26
|
+
"README.md",
|
|
27
|
+
"UPGRADE.md"
|
|
28
|
+
],
|
|
29
|
+
"singleSkillInstall": "Single-skill installs keep core SKILL.md workflow behavior; suite tools are bundle-only enhancements."
|
|
30
|
+
}
|
|
31
|
+
}
|