@raishin/vanguard-frontier-agentic 2.5.0 → 2.6.0
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/.agents/tasks/task-dynamic-kiro-powers/2025-01-24-120000-review.md +92 -0
- package/.agents/tasks/task-dynamic-kiro-powers/context.json +22 -0
- package/.agents/tasks/task-dynamic-kiro-powers/features/FEAT-001.json +34 -0
- package/.agents/tasks/task-dynamic-kiro-powers/task.json +14 -0
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.cursor-plugin/plugin.json +1 -1
- package/.github/plugin/marketplace.json +1 -1
- package/README.md +2 -0
- package/catalog/asset-integrity.json +129 -29
- package/package.json +3 -1
- package/plugins/vanguard-frontier-agentic/.codex-plugin/plugin.json +3 -2
- package/plugins/vanguard-frontier-agentic/skills/vanguard-frontier-agentic-install/SKILL.md +37 -0
- package/powers/README.md +28 -10
- package/powers/vanguard-argocd/POWER.md +40 -0
- package/powers/vanguard-backstage/POWER.md +40 -0
- package/powers/vanguard-cert-manager/POWER.md +40 -0
- package/powers/vanguard-cilium/POWER.md +40 -0
- package/powers/vanguard-dotnet/POWER.md +41 -0
- package/powers/vanguard-falco/POWER.md +40 -0
- package/powers/vanguard-fluxcd/POWER.md +40 -0
- package/powers/vanguard-generic/POWER.md +40 -0
- package/powers/vanguard-hr/POWER.md +41 -0
- package/powers/vanguard-istio/POWER.md +40 -0
- package/powers/vanguard-kyverno/POWER.md +40 -0
- package/powers/vanguard-legal/POWER.md +41 -0
- package/powers/vanguard-marketing/POWER.md +41 -0
- package/powers/vanguard-multi-cloud/POWER.md +41 -0
- package/powers/vanguard-opentelemetry/POWER.md +40 -0
- package/powers/vanguard-prometheus/POWER.md +40 -0
- package/powers/vanguard-sigstore/POWER.md +40 -0
- package/scripts/export-marketplace-agents.mjs +26 -0
- package/scripts/generate-kiro-powers.mjs +360 -5
- package/scripts/install-codex-home.mjs +95 -0
- package/tests/test-codex-plugin-marketplace-install.test.mjs +132 -0
- package/tests/test-vfa-export-coverage.test.mjs +108 -0
- package/tests/validate-codex-marketplace.py +23 -1
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vanguard-frontier-agentic-install
|
|
3
|
+
description: Install all Vanguard Frontier Agentic Codex agents and companion skills into the current user's ~/.codex home after adding or installing the plugin marketplace.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Vanguard Frontier Agentic Codex Install
|
|
7
|
+
|
|
8
|
+
Use this skill when the user wants the Vanguard Frontier Agentic marketplace content installed into Codex as real user-level agents and skills.
|
|
9
|
+
|
|
10
|
+
## Reliable two-stage install
|
|
11
|
+
|
|
12
|
+
Run from any directory:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
codex plugin marketplace add Raishin/vanguard-frontier-agentic
|
|
16
|
+
npx --yes -p @raishin/vanguard-frontier-agentic \
|
|
17
|
+
vfa-export-agents --platform codex --all --repo "$HOME" --force
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
If working from a local checkout of the repository, prefer the local exporter so unpublished branch changes are used:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
node scripts/export-marketplace-agents.mjs --platform codex --all --repo "$HOME" --force
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Verify
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
find "$HOME/.codex/agents" -maxdepth 1 -name '*.toml' | wc -l
|
|
30
|
+
find "$HOME/.codex/skills" -mindepth 1 -maxdepth 1 -type d | wc -l
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Expected for this release: all Codex-capable VFA agents are installed under `$HOME/.codex/agents`, and companion skills are installed under `$HOME/.codex/skills`.
|
|
34
|
+
|
|
35
|
+
## Important limitation
|
|
36
|
+
|
|
37
|
+
`codex plugin marketplace add` installs/tracks the marketplace source. It does not, by itself, prove that Codex installed the plugin cache or exported repo-level agent TOML files. The exporter is the deterministic second stage for agents and companion skills.
|
package/powers/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# `powers/` — Kiro Powers
|
|
2
2
|
|
|
3
|
-
This directory holds **
|
|
3
|
+
This directory holds **32 Kiro Powers** for `vanguard-frontier-agentic`, one
|
|
4
4
|
per cloud/platform/IaC provider. Each Power is a directory containing a
|
|
5
5
|
`POWER.md` file with strict-5 frontmatter and steering content.
|
|
6
6
|
|
|
@@ -8,20 +8,38 @@ per cloud/platform/IaC provider. Each Power is a directory containing a
|
|
|
8
8
|
|
|
9
9
|
```
|
|
10
10
|
powers/
|
|
11
|
+
├── vanguard-alibaba/POWER.md
|
|
12
|
+
├── vanguard-argocd/POWER.md
|
|
11
13
|
├── vanguard-aws/POWER.md
|
|
12
14
|
├── vanguard-azure/POWER.md
|
|
15
|
+
├── vanguard-backstage/POWER.md
|
|
16
|
+
├── vanguard-cert-manager/POWER.md
|
|
17
|
+
├── vanguard-cilium/POWER.md
|
|
18
|
+
├── vanguard-contabo/POWER.md
|
|
19
|
+
├── vanguard-dotnet/POWER.md
|
|
20
|
+
├── vanguard-falco/POWER.md
|
|
21
|
+
├── vanguard-fluxcd/POWER.md
|
|
13
22
|
├── vanguard-gcp/POWER.md
|
|
14
|
-
├── vanguard-
|
|
15
|
-
├── vanguard-alibaba/POWER.md
|
|
16
|
-
├── vanguard-huawei/POWER.md
|
|
17
|
-
├── vanguard-ovhcloud/POWER.md
|
|
18
|
-
├── vanguard-scaleway/POWER.md
|
|
23
|
+
├── vanguard-generic/POWER.md
|
|
19
24
|
├── vanguard-hetzner/POWER.md
|
|
20
|
-
├── vanguard-
|
|
25
|
+
├── vanguard-hr/POWER.md
|
|
26
|
+
├── vanguard-huawei/POWER.md
|
|
21
27
|
├── vanguard-ionos/POWER.md
|
|
28
|
+
├── vanguard-istio/POWER.md
|
|
22
29
|
├── vanguard-kubernetes/POWER.md
|
|
23
|
-
├── vanguard-
|
|
24
|
-
|
|
30
|
+
├── vanguard-kyverno/POWER.md
|
|
31
|
+
├── vanguard-legal/POWER.md
|
|
32
|
+
├── vanguard-marketing/POWER.md
|
|
33
|
+
├── vanguard-multi-cloud/POWER.md
|
|
34
|
+
├── vanguard-nvidia/POWER.md
|
|
35
|
+
├── vanguard-oci/POWER.md
|
|
36
|
+
├── vanguard-opentelemetry/POWER.md
|
|
37
|
+
├── vanguard-ovhcloud/POWER.md
|
|
38
|
+
├── vanguard-prometheus/POWER.md
|
|
39
|
+
├── vanguard-salesforce/POWER.md
|
|
40
|
+
├── vanguard-scaleway/POWER.md
|
|
41
|
+
├── vanguard-sigstore/POWER.md
|
|
42
|
+
└── vanguard-terraform/POWER.md
|
|
25
43
|
```
|
|
26
44
|
|
|
27
45
|
Each `POWER.md` declares:
|
|
@@ -58,7 +76,7 @@ cd vanguard-frontier-agentic
|
|
|
58
76
|
## How to update
|
|
59
77
|
|
|
60
78
|
```bash
|
|
61
|
-
# Regenerate the
|
|
79
|
+
# Regenerate the 32 Powers from catalog/agents.json + per-provider config:
|
|
62
80
|
npm run kiro-powers:write
|
|
63
81
|
|
|
64
82
|
# Then verify everything is in sync:
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-argocd"
|
|
3
|
+
displayName: "Vanguard Frontier — ArgoCD"
|
|
4
|
+
description: "Curated ArgoCD review agents covering argo rollouts progressive delivery, gitops. Reference agents directly under agents/argocd/. Static review only; no live mutations."
|
|
5
|
+
keywords: ["argocd", "gitops", "progressive-delivery", "application-sync"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — ArgoCD
|
|
9
|
+
|
|
10
|
+
Curated ArgoCD review agents covering argo rollouts progressive delivery, gitops. Reference agents directly under agents/argocd/. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references ArgoCD services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/argocd/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/argocd/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Sync and rollout strategies must be validated against the target cluster GitOps workflow.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/argocd/` in that repository. All 2 agents in this provider ship a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider argocd --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-backstage"
|
|
3
|
+
displayName: "Vanguard Frontier — Backstage"
|
|
4
|
+
description: "Reviews backstage Scaffolder software templates for action blast-radius, input parameter injection, RBAC gate coverage,... Static review only; no live mutations."
|
|
5
|
+
keywords: ["backstage", "scaffolder", "software-templates", "developer-portal"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Backstage
|
|
9
|
+
|
|
10
|
+
Reviews backstage Scaffolder software templates for action blast-radius, input parameter injection, RBAC gate coverage,... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Backstage services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/backstage/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/backstage/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Template parameters and scaffolder actions must be reviewed for injection and secret-exposure risks.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/backstage/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider backstage --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-cert-manager"
|
|
3
|
+
displayName: "Vanguard Frontier — Cert-Manager"
|
|
4
|
+
description: "Reviews cert-manager Issuer and ClusterIssuer scope, CertificateRequestPolicy coverage, certificate SAN and duration risks,... Static review only; no live mutations."
|
|
5
|
+
keywords: ["cert-manager", "x509", "certificate-lifecycle", "pki"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Cert-Manager
|
|
9
|
+
|
|
10
|
+
Reviews cert-manager Issuer and ClusterIssuer scope, CertificateRequestPolicy coverage, certificate SAN and duration risks,... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Cert-Manager services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/cert-manager/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/cert-manager/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Certificate renewal windows and issuer trust chains must be validated before any policy change.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/cert-manager/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider cert-manager --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-cilium"
|
|
3
|
+
displayName: "Vanguard Frontier — Cilium"
|
|
4
|
+
description: "Reviews cilium CiliumNetworkPolicy, CiliumClusterwideNetworkPolicy, standard NetworkPolicy, ClusterMesh cross-cluster policy... Static review only; no live mutations."
|
|
5
|
+
keywords: ["cilium", "network-policy", "ebpf", "cluster-mesh"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Cilium
|
|
9
|
+
|
|
10
|
+
Reviews cilium CiliumNetworkPolicy, CiliumClusterwideNetworkPolicy, standard NetworkPolicy, ClusterMesh cross-cluster policy... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Cilium services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/cilium/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/cilium/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Network policies must be reviewed for unintended traffic blocking across namespaces and cluster-mesh endpoints.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/cilium/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider cilium --repo .`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-dotnet"
|
|
3
|
+
displayName: "Vanguard Frontier — .NET"
|
|
4
|
+
description: "Curated .NET agents for aspire cloud native, aspnetcore api, aspnetcore identity authz, csharp runtime. Routes via dotnet-maestro-agent to specialist agents based on task scope. Static review only; no live mutations."
|
|
5
|
+
keywords: ["dotnet", "csharp", "aspnet-core", "ef-core", "nuget"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — .NET
|
|
9
|
+
|
|
10
|
+
Curated .NET agents for aspire cloud native, aspnetcore api, aspnetcore identity authz, csharp runtime. Routes via dotnet-maestro-agent to specialist agents based on task scope. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references .NET services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- **`dotnet-maestro-agent`** — classifies and routes the task to the right specialist
|
|
19
|
+
|
|
20
|
+
Use the maestro as the entry point: classify the task, then dispatch to one specialist or a parallel team of specialists. Never have the maestro itself execute a live mutation.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Route all tasks through dotnet-maestro-agent for proper classification and dispatch.
|
|
31
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
32
|
+
- Review covers language runtime, frameworks, data access, testing, and supply-chain integrity.
|
|
33
|
+
|
|
34
|
+
## Where the agents live
|
|
35
|
+
|
|
36
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/dotnet/` in that repository. All 10 agents in this provider ship a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
37
|
+
|
|
38
|
+
## Companion install paths
|
|
39
|
+
|
|
40
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
41
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider dotnet --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-falco"
|
|
3
|
+
displayName: "Vanguard Frontier — Falco"
|
|
4
|
+
description: "Reviews falco rules for macro correctness, exception blast radius, sensitive-path coverage, K8s audit gaps, and alert output... Static review only; no live mutations."
|
|
5
|
+
keywords: ["falco", "runtime-threat", "syscall-rules", "container-security"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Falco
|
|
9
|
+
|
|
10
|
+
Reviews falco rules for macro correctness, exception blast radius, sensitive-path coverage, K8s audit gaps, and alert output... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Falco services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/falco/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/falco/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Rule changes must be evaluated for false-positive rate impact on production alerting.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/falco/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider falco --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-fluxcd"
|
|
3
|
+
displayName: "Vanguard Frontier — FluxCD"
|
|
4
|
+
description: "Reviews fluxCD Kustomization, HelmRelease, and source resources for SOPS encryption, source trust, ServiceAccount scoping,... Static review only; no live mutations."
|
|
5
|
+
keywords: ["fluxcd", "gitops", "kustomization", "helm-release"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — FluxCD
|
|
9
|
+
|
|
10
|
+
Reviews fluxCD Kustomization, HelmRelease, and source resources for SOPS encryption, source trust, ServiceAccount scoping,... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references FluxCD services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/fluxcd/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/fluxcd/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Kustomization and HelmRelease reconciliation intervals must align with the GitOps change cadence.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/fluxcd/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider fluxcd --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-generic"
|
|
3
|
+
displayName: "Vanguard Frontier — Generic"
|
|
4
|
+
description: "Curated Generic review agents covering ci test pipeline, helm chart quality, kubernetes manifest quality, llm ai pipeline test. Reference agents directly under agents/generic/. Static review only; no live mutations."
|
|
5
|
+
keywords: ["test-quality", "ci-pipeline", "helm-chart", "manifest-review"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Generic
|
|
9
|
+
|
|
10
|
+
Curated Generic review agents covering ci test pipeline, helm chart quality, kubernetes manifest quality, llm ai pipeline test. Reference agents directly under agents/generic/. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Generic services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/generic/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/generic/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Agents are provider-agnostic and focus on CI, Helm, manifest, and test-quality patterns.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/generic/` in that repository. 9 of 10 agents in this provider ship a Kiro adapter; the rest provide steering context only.
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider generic --repo .`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-hr"
|
|
3
|
+
displayName: "Vanguard Frontier — HR"
|
|
4
|
+
description: "Curated HR agents for analytics people data, benefits payroll, compensation equity, culture dei. Routes via hr-maestro-agent to specialist agents based on task scope. Static review only; no live mutations."
|
|
5
|
+
keywords: ["hr-governance", "employment-risk", "compensation-equity", "recruiting"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — HR
|
|
9
|
+
|
|
10
|
+
Curated HR agents for analytics people data, benefits payroll, compensation equity, culture dei. Routes via hr-maestro-agent to specialist agents based on task scope. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references HR services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- **`hr-maestro-agent`** — classifies and routes the task to the right specialist
|
|
19
|
+
|
|
20
|
+
Use the maestro as the entry point: classify the task, then dispatch to one specialist or a parallel team of specialists. Never have the maestro itself execute a live mutation.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Route all tasks through hr-maestro-agent for proper classification and dispatch.
|
|
31
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
32
|
+
- All findings must respect employee privacy and data-minimization principles.
|
|
33
|
+
|
|
34
|
+
## Where the agents live
|
|
35
|
+
|
|
36
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/hr/` in that repository. All 15 agents in this provider ship a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
37
|
+
|
|
38
|
+
## Companion install paths
|
|
39
|
+
|
|
40
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
41
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider hr --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-istio"
|
|
3
|
+
displayName: "Vanguard Frontier — Istio"
|
|
4
|
+
description: "Reviews istio ambient mesh configuration — ztunnel L4 vs waypoint L7 enforcement, AuthorizationPolicy scope,... Static review only; no live mutations."
|
|
5
|
+
keywords: ["istio", "service-mesh", "ambient-mesh", "mtls"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Istio
|
|
9
|
+
|
|
10
|
+
Reviews istio ambient mesh configuration — ztunnel L4 vs waypoint L7 enforcement, AuthorizationPolicy scope,... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Istio services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/istio/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/istio/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Service mesh policies affect traffic routing cluster-wide; review blast radius before changes.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/istio/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider istio --repo .`
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-kyverno"
|
|
3
|
+
displayName: "Vanguard Frontier — Kyverno"
|
|
4
|
+
description: "Reviews kyverno ClusterPolicy and Policy resources for failureAction, background scanning, PolicyException audit,... Static review only; no live mutations."
|
|
5
|
+
keywords: ["kyverno", "admission-policy", "cluster-policy", "policy-enforcement"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Kyverno
|
|
9
|
+
|
|
10
|
+
Reviews kyverno ClusterPolicy and Policy resources for failureAction, background scanning, PolicyException audit,... Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Kyverno services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- *(no maestro for this provider; reference agents directly under `agents/kyverno/`)*
|
|
19
|
+
|
|
20
|
+
Reference agents directly from agents/kyverno/ without maestro-based routing.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
31
|
+
- Cluster-scoped policies can reject legitimate workloads; validate against existing deployments before applying.
|
|
32
|
+
|
|
33
|
+
## Where the agents live
|
|
34
|
+
|
|
35
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/kyverno/` in that repository. The single agent in this provider ships a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
36
|
+
|
|
37
|
+
## Companion install paths
|
|
38
|
+
|
|
39
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
40
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider kyverno --repo .`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-legal"
|
|
3
|
+
displayName: "Vanguard Frontier — Legal"
|
|
4
|
+
description: "Curated Legal agents for contract, counsel, employment law risk, ethics investigations. Routes via legal-maestro-agent to specialist agents based on task scope. Static review only; no live mutations."
|
|
5
|
+
keywords: ["legal-risk", "contract-review", "privacy-compliance", "regulatory"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Legal
|
|
9
|
+
|
|
10
|
+
Curated Legal agents for contract, counsel, employment law risk, ethics investigations. Routes via legal-maestro-agent to specialist agents based on task scope. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Legal services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- **`legal-maestro-agent`** — classifies and routes the task to the right specialist
|
|
19
|
+
|
|
20
|
+
Use the maestro as the entry point: classify the task, then dispatch to one specialist or a parallel team of specialists. Never have the maestro itself execute a live mutation.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Route all tasks through legal-maestro-agent for proper classification and dispatch.
|
|
31
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
32
|
+
- Agents provide risk-flagging only; output is not legal advice and does not create attorney-client privilege.
|
|
33
|
+
|
|
34
|
+
## Where the agents live
|
|
35
|
+
|
|
36
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/legal/` in that repository. All 13 agents in this provider ship a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
37
|
+
|
|
38
|
+
## Companion install paths
|
|
39
|
+
|
|
40
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
41
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider legal --repo .`
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "vanguard-marketing"
|
|
3
|
+
displayName: "Vanguard Frontier — Marketing"
|
|
4
|
+
description: "Curated Marketing agents for ai advertising targeting fairness, analytics data minimization, email sender authentication, eu ai act marketing system. Routes via marketing-maestro-agent to specialist agents based on task scope. Static review only; no live mutations."
|
|
5
|
+
keywords: ["marketing-governance", "consent-compliance", "advertising-fairness", "email-authentication"]
|
|
6
|
+
author: "Raishin"
|
|
7
|
+
---
|
|
8
|
+
# Vanguard Frontier — Marketing
|
|
9
|
+
|
|
10
|
+
Curated Marketing agents for ai advertising targeting fairness, analytics data minimization, email sender authentication, eu ai act marketing system. Routes via marketing-maestro-agent to specialist agents based on task scope. Static review only; no live mutations.
|
|
11
|
+
|
|
12
|
+
## When to engage this Power
|
|
13
|
+
|
|
14
|
+
Activate when the task references Marketing services, resources, or operations. Do not activate on unrelated requests — narrow keyword matching is required to avoid false activations (Kiro Powers convention).
|
|
15
|
+
|
|
16
|
+
## Routing pattern
|
|
17
|
+
|
|
18
|
+
- **`marketing-maestro-agent`** — classifies and routes the task to the right specialist
|
|
19
|
+
|
|
20
|
+
Use the maestro as the entry point: classify the task, then dispatch to one specialist or a parallel team of specialists. Never have the maestro itself execute a live mutation.
|
|
21
|
+
|
|
22
|
+
## Live-guard agents (gate_mode only)
|
|
23
|
+
|
|
24
|
+
- *(none — this provider has no live-mutation guards in the catalog)*
|
|
25
|
+
|
|
26
|
+
Live-guard agents enforce approval, target confirmation, evidence capture, and rollback plans before executing a mutation. They are never auto-dispatched — the maestro must place them in `live-guard-gate` or `runtime-evidence-gate` mode.
|
|
27
|
+
|
|
28
|
+
## Invariants
|
|
29
|
+
|
|
30
|
+
- Route all tasks through marketing-maestro-agent for proper classification and dispatch.
|
|
31
|
+
- Static review only -- agents analyze configuration and provide findings without mutating live systems.
|
|
32
|
+
- Review covers consent, privacy, fairness, and regulatory compliance for marketing systems.
|
|
33
|
+
|
|
34
|
+
## Where the agents live
|
|
35
|
+
|
|
36
|
+
Agent specs and adapters are part of the [Vanguard Frontier Agentic](https://github.com/Raishin/vanguard-frontier-agentic) marketplace. For this provider, see `agents/marketing/` in that repository. All 14 agents in this provider ship a Kiro adapter (`harnesses/kiro-ide.agent.md`, `kiro-cli.agent.json`).
|
|
37
|
+
|
|
38
|
+
## Companion install paths
|
|
39
|
+
|
|
40
|
+
- **Claude Code:** `/plugin marketplace add Raishin/vanguard-frontier-agentic` then `/plugin install vanguard-frontier-agentic@vanguard-frontier-agentic`
|
|
41
|
+
- **Codex / Copilot / Cursor / Gemini CLI / Kiro (file export):** `npx vfa-export-agents --platform <harness> --provider marketing --repo .`
|