Naftiko · Capability

Nwm Agent Safety Tagged Capability

A Northwestern Mutual capability that tags every agent action with safety classification (PII, regulated, financial-advice) for audit.

Run with Naftiko NaftikoNWMAgent Safety

What You Can Do

POST
Tag action
/tag

MCP Tools

tag-action

list-safety-events

read-only

Capability Spec

nwm-agent-safety-tagged-capability.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  title: Nwm Agent Safety Tagged Capability
  description: A Northwestern Mutual capability that tags every agent action with safety classification (PII, regulated, financial-advice) for audit.
  tags: [Naftiko, NWM, Agent Safety]
  created: '2026-05-01'
  modified: '2026-05-04'
binds:
- namespace: naftiko-env
  keys: {NAFTIKO_API_KEY: NAFTIKO_API_KEY}
capability:
  consumes:
  - namespace: naftiko-control
    type: http
    baseUri: https://api.naftiko.com
    authentication: {type: bearer, token: '{{NAFTIKO_API_KEY}}'}
    resources:
    - {name: safety-tags, path: /v1/safety/tags, operations: [{name: tag-action, method: POST}]}
    - {name: safety-events, path: /v1/safety/events, operations: [{name: list-safety-events, method: GET}]}
  exposes:
  - type: rest
    address: 0.0.0.0
    port: 8080
    namespace: nwm-agent-safety-tagged-capability-rest
    description: REST surface for safety-tagged actions.
    resources:
    - {name: tag, path: /tag, operations: [{method: POST, name: tag-action, call: naftiko-control.tag-action}]}
  - type: mcp
    address: 0.0.0.0
    port: 3010
    namespace: nwm-agent-safety-tagged-capability-mcp
    description: MCP for safety-tagged agent actions.
    tools:
    - {name: tag-action, call: naftiko-control.tag-action}
    - {name: list-safety-events, hints: {readOnly: true}, call: naftiko-control.list-safety-events}
  - type: skill
    address: 0.0.0.0
    port: 3011
    namespace: nwm-agent-safety-tagged-capability-skills
    description: Skill for agent safety.
    skills:
    - name: nwm-agent-safety-tagged-capability
      description: Agent safety-tagged actions.
      location: file:///opt/naftiko/skills/nwm-agent-safety-tagged-capability
      allowed-tools: tag-action,list-safety-events
      tools:
      - {name: tag-action, from: {sourceNamespace: nwm-agent-safety-tagged-capability-mcp, action: tag-action}}
      - {name: list-safety-events, from: {sourceNamespace: nwm-agent-safety-tagged-capability-mcp, action: list-safety-events}}