Install
openclaw skills install @howdymarc/affinity-readonlyRead-only Affinity CRM access for analysis and memo prep. Use when you need to fetch Affinity companies, people, notes, opportunities, interactions, or relationship data via API and summarize it. Enforce GET-only operations, never perform writes, and never expose API keys.
openclaw skills install @howdymarc/affinity-readonlyUse this skill for Affinity analysis tasks from chat or Slack.
AFFINITY_API_KEY.AFFINITY_API_KEY must be set in local environment.Quick check:
zsh -lc '[[ -n "$AFFINITY_API_KEY" ]] && echo "AFFINITY_API_KEY is set" || echo "AFFINITY_API_KEY is not set"'
Use the bundled script:
./skills/affinity-readonly/scripts/affinity_get.sh "/companies" "page_size=25"
./skills/affinity-readonly/scripts/affinity_get.sh "/persons" "term=Driven%20Plastics"
./skills/affinity-readonly/scripts/affinity_get.sh "/notes" "person_id=12345"
/?https://api.affinity.co and can be overridden with AFFINITY_API_BASEaffinity_get.sh.