Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

salesflaresalesflare 搜索

Agent Skill

salesflare 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,256

周安装

219

GitHub Stars

公开资料未说明

下载量

1,752
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:salesflare(salesflare 搜索)
来源仓库:https://github.com/jeroencorthout/salesflare
安装命令:
openclaw skills install salesflare
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install salesflare

简介

salesflare 提供完整的 Salesflare CRM 数据读写与更新操作支持。

  • 适用于账户、联系人、机会与任务管理等销售流程自动化场景。
  • 通过 clawhub 安装后,可无缝集成现有 CRM 工作流实现数据同步。
  • 使用前必须配置 API 密钥并遵循最小权限原则设置访问范围。
  • 建议定期审计操作日志以防止误删或越权修改记录。

SKILL.md

name
salesflare
description
Full Salesflare API operations skill for reading, searching, creating, and updating CRM data (accounts, contacts, opportunities, tasks, pipelines, users, tags, workflows, and more). Use when a user asks to query or mutate Salesflare data via API, build API-driven automations, inspect available endpoints/fields, or troubleshoot Salesflare API requests. Supports practical/basic filters out of the box and raw advanced query parameters; does not provide a dedicated high-level builder for Salesflare's complex query-builder payloads.
metadata

Salesflare API

Overview

Use this skill to work with the Salesflare REST API safely and consistently.

Default approach:

  1. Discover endpoint shape and required fields
  2. Do a read/check request first
  3. Ask confirmation before mutating data
  4. Execute mutation and return compact result with IDs

Quick Start

Set API key before requests:

export SALESFLARE_API_KEY='your_key_here'
  • Base URL: https://api.salesflare.com (production, default)
  • Auth header: Authorization: Bearer <API_KEY>
  • Optional local override: set SALESFLARE_BASE_URL to a staging URL if needed for local testing.
  • Keep local secrets in an ignored .env.local or process environment only. Do not publish API keys or smoke-test outputs with the skill.

Core Scripts

  • scripts/sf.py — unified CLI wrapper (subcommands: discover, request, get, post, put, patch, delete, smoketest)
  • scripts/sf_discover.py — discover/list endpoints and methods from OpenAPI
  • scripts/sf_request.py — execute GET/POST/PATCH/PUT/DELETE with retry handling; supports query params, JSON body, auto-pagination
  • scripts/sf_smoketest.py — smoke-test OpenAPI operations. Default mode is read-only; lifecycle writes require --allow-write, and cleanup deletes require both --allow-write --allow-delete.

Workflow

1) Discover endpoint and shape

python scripts/sf.py discover --contains opportunities
python scripts/sf.py discover --tag Accounts

2) Validate with read call

python scripts/sf.py get --path /accounts --query limit=5 --query search=acme

3) Confirm before writes

Always confirm intent with the user before executing POST, PUT, PATCH, or DELETE. For DELETE operations, require explicit confirmation regardless of context — do not infer consent from prior conversation.

4) Execute write and report

Return:

  • action performed
  • target entity ID(s)
  • key changed fields
  • API response summary

5) Smoke-test safely

Default smoke test is read-only:

python scripts/sf.py smoketest

Enable lifecycle write-path testing explicitly. This creates controlled test records first, runs GET list and by-ID checks, updates only records created by the same run, then deletes only those records:

python scripts/sf.py smoketest --allow-write --allow-delete

Lifecycle write coverage is intentionally limited to data the smoke test can own and clean up: accounts, contacts, opportunities, tasks, meetings, internal notes/messages, and tags. It also tests account-contact/account-user relationship updates on the test account and feedback on the test message. Other write endpoints are reported as skipped unless they can be safely represented in that lifecycle.

Run write coverage without cleanup only if you intentionally want to keep the created records:

python scripts/sf.py smoketest --allow-write

Mutation Safety Rules

  • POST/PUT/PATCH: always require explicit user confirmation before executing. Never infer consent.
  • DELETE: always require explicit user confirmation before executing. Never infer consent.
  • Smoke-test defaults to read-only. Use --allow-write --allow-delete for lifecycle write testing with cleanup. PUT and DELETE are only run on records created by the same smoke-test run.
  • If a lifecycle write test is interrupted, search Salesflare for records named OpenClaw Smoke or tags starting with openclaw-smoke- before rerunning.
  • Do not perform bulk mutations without explicit confirmation.
  • Prefer single-record updates before bulk updates.
  • Include IDs in all write output for traceability.
  • On 429, rely on script retry/backoff. If retries exhaust, stop and report clearly.

Output Rules

  • Default: concise summary + key IDs/fields
  • Provide raw JSON only when user asks for full payload
  • For large result sets, return top N and mention total if available

Filtering

  • Direct support: simple query params via repeated --query key=value
  • Advanced Salesflare query-builder filters (q object/rules): pass as raw serialized query payload when needed
  • This skill does not implement a high-level DSL for composing complex q structures

Common Endpoints

/accounts       /contacts       /opportunities
/accounts/{account_id}/feed
/tasks          /pipelines      /users   /me
/tags           /workflows

See references/endpoints.md for concrete command examples and write patterns.

Known Endpoint Caveats

  • GET /accounts/{account_id}/feed — returns an account's feed/timeline when enabled for the workspace. If it is unavailable, contact support@salesflare.com and ask Salesflare to turn on account feed API access.
  • GET /persons — bare call can return 500. Use ?search=... or ?id=... instead.
  • GET /tags/{tag_id} — returns 500 with valid IDs; use GET /tags and GET /tags/{tag_id}/usage.
  • GET /persons filter fieldsGET /filterfields/person returns 400; use contact instead.
  • See references/endpoints.md for the full list of endpoint-specific caveats.

Resources

scripts/

  • sf.py — unified wrapper CLI
  • sf_discover.py — endpoint discovery from OpenAPI
  • sf_request.py — authenticated API execution helper
  • sf_smoketest.py — full operation smoke-test runner

references/

  • endpoints.md — practical request examples, write patterns, and endpoint-specific caveats

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.83%
按下载量换算1,714

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills