Naftiko · Capability

Gitops Ccf European Banking Capability

A capability combining GitOps deploys (Argo CD) with Continuous Compliance Framework (CCF) checks tailored for European banking regulators.

Run with Naftiko NaftikoGitOpsCCFEuropean Banking

What You Can Do

POST
Deploy with compliance
/deploy-with-compliance/{{name}}

MCP Tools

list-apps

read-only
deploy-with-compliance

Capability Spec

gitops-ccf-european-banking-capability.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  title: Gitops Ccf European Banking Capability
  description: A capability combining GitOps deploys (Argo CD) with Continuous Compliance Framework (CCF) checks tailored for European banking regulators.
  tags: [Naftiko, GitOps, CCF, European Banking]
  created: '2026-05-01'
  modified: '2026-05-04'
binds:
- namespace: argocd-env
  keys: {ARGOCD_HOST: ARGOCD_HOST, ARGOCD_TOKEN: ARGOCD_TOKEN}
- namespace: ccf-env
  keys: {CCF_HOST: CCF_HOST, CCF_TOKEN: CCF_TOKEN}
capability:
  consumes:
  - namespace: argocd
    type: http
    baseUri: https://{{ARGOCD_HOST}}
    authentication: {type: bearer, token: '{{ARGOCD_TOKEN}}'}
    resources:
    - {name: applications, path: /api/v1/applications, operations: [{name: list-applications, method: GET}]}
    - name: app-sync
      path: '/api/v1/applications/{{name}}/sync'
      operations:
      - {name: sync-application, method: POST, inputParameters: [{name: name, in: path}]}
  - namespace: ccf
    type: http
    baseUri: https://{{CCF_HOST}}
    authentication: {type: bearer, token: '{{CCF_TOKEN}}'}
    resources:
    - {name: assessments, path: /api/v1/assessments, operations: [{name: run-assessment, method: POST}]}
  exposes:
  - type: rest
    address: 0.0.0.0
    port: 8080
    namespace: gitops-ccf-european-banking-capability-rest
    description: REST surface for GitOps + CCF for European banking.
    resources:
    - {name: deploy-with-compliance, path: '/deploy-with-compliance/{{name}}', operations: [{method: POST, name: deploy-with-compliance, inputParameters: [{name: name, in: path, type: string}], call: ccf.run-assessment}]}
  - type: mcp
    address: 0.0.0.0
    port: 3010
    namespace: gitops-ccf-european-banking-capability-mcp
    description: MCP for GitOps + CCF.
    tools:
    - {name: list-apps, hints: {readOnly: true}, call: argocd.list-applications}
    - name: deploy-with-compliance
      inputParameters: [{name: name, type: string, required: true}]
      call: ccf.run-assessment
  - type: skill
    address: 0.0.0.0
    port: 3011
    namespace: gitops-ccf-european-banking-capability-skills
    description: Skill for GitOps + CCF.
    skills:
    - name: gitops-ccf-european-banking-capability
      description: GitOps + CCF for European banking.
      location: file:///opt/naftiko/skills/gitops-ccf-european-banking-capability
      allowed-tools: list-apps,deploy-with-compliance
      tools:
      - {name: list-apps, from: {sourceNamespace: gitops-ccf-european-banking-capability-mcp, action: list-apps}}
      - {name: deploy-with-compliance, from: {sourceNamespace: gitops-ccf-european-banking-capability-mcp, action: deploy-with-compliance}}