Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

flowpatrol-ops流量巡逻操作

Agent Skill

flowpatrol-ops 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

4

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:flowpatrol-ops(流量巡逻操作)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/flowpatrol-ops
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill flowpatrol-ops
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill flowpatrol-ops

简介

flowpatrol-ops 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

flowpatrol-ops

Purpose

This skill automates operational monitoring and ensures compliance for FlowPatrol financial systems, using tools to track transactions, detect anomalies, and enforce regulatory standards.

When to Use

Use this skill for real-time monitoring of financial operations, compliance audits in production environments, or automating alerts for suspicious activities in FlowPatrol systems. Apply it when integrating with financial workflows to maintain security and regulatory adherence.

Key Capabilities

  • Monitor system logs and transactions in real-time using FlowPatrol's API to detect anomalies like unusual transaction volumes.
  • Enforce compliance by checking against rulesets (e.g., PCI DSS) and generating automated reports.
  • Automate alerts via email or webhook for events like threshold breaches.
  • Integrate with external tools for data aggregation, such as pulling metrics from Prometheus.
  • Handle batch processing for compliance checks on historical data.
  • Support configurable thresholds, e.g., set via JSON config files for custom monitoring rules.
  • Provide API-based querying for on-demand status checks.
  • Generate audit trails with timestamps and user IDs for all operations.
  • Scale monitoring across multiple FlowPatrol instances.
  • Use embedded analytics to visualize compliance metrics.

Usage Patterns

Invoke the skill via CLI for quick tasks or through API calls for programmatic integration. Always set environment variables for authentication first, like export FLOWPATROL_API_KEY=$SERVICE_API_KEY. For repeated tasks, use scripts that chain commands, such as monitoring followed by compliance checks. Pass configurations via files (e.g., JSON) to customize behavior, and handle outputs in JSON format for easy parsing.

Common Commands/API

Use the FlowPatrol CLI with these commands; ensure the tool is installed via pip install flowpatrol-ops. Authentication requires $FLOWPATROL_API_KEY as an environment variable.

  • CLI command for monitoring: flowpatrol monitor --system prod --interval 5m --threshold 100 (flags: --system for environment, --interval for check frequency, --threshold for alert level).
  • CLI for compliance check: flowpatrol check-compliance --ruleset pci --output report.json (snippet: export FLOWPATROL_API_KEY=your_key flowpatrol check-compliance --ruleset pci).
  • API endpoint for starting a monitor: POST to /api/v1/monitor with JSON body {"system": "prod", "interval": "5m"} (e.g., using curl: curl -X POST -H "Authorization: Bearer $FLOWPATROL_API_KEY" -d '{"system":"prod"}' https://api.flowpatrol.com/api/v1/monitor).
  • API for retrieving reports: GET /api/v1/reports/{reportId} with query params like ?format=json.
  • Command to generate alerts: flowpatrol alert-setup --webhook https://your.webhook.url --event anomaly (config format: JSON file like {"events": ["anomaly"], "webhook": "url"}).
  • Batch processing command: flowpatrol process-batch --file transactions.csv --rules compliance_rules.json (snippet: flowpatrol process-batch --file data.csv echo "Processing complete").
  • Stop monitoring: flowpatrol stop --id monitor123 (uses --id flag for specific instance).
  • Query status: flowpatrol status --system prod (returns JSON output).

Integration Notes

Integrate with financial tools by exporting data to formats like CSV or JSON for tools like Excel or Tableau. Use $FLOWPATROL_API_KEY for auth in scripts; example: set in.env files for Docker containers. For webhooks, ensure URLs are HTTPS and handle payloads in JSON. When combining with other skills (e.g., in the "financial" cluster), chain API calls, like calling FlowPatrol after data ingestion from a database. Config files should follow this format: {"apiEndpoint": "https://api.flowpatrol.com", "key": "$FLOWPATROL_API_KEY"}. Avoid hardcoding keys; use environment variables for security.

Error Handling

Check CLI exit codes: 0 for success, 1-9 for errors (e.g., 1 for auth failure). For API calls, handle HTTP status codes like 401 (unauthorized) by re-authenticating, or 500 (server error) by retrying with exponential backoff. In scripts, use try-catch blocks (e.g., in Python:

try:
    response = requests.post(url, headers=headers)
    response.raise_for_status()
except requests.exceptions.HTTPError as err:
    print(f"Error: {err}")

). Parse error responses, which are JSON like {"error": "Invalid key", "code": 401}. Log all errors with timestamps and retry transient issues up to 3 times. For CLI, use --verbose flag to debug.

Concrete Usage Examples

  1. Monitoring transactions in production: Export your API key, then run flowpatrol monitor --system prod --interval 1m to start real-time monitoring. This detects anomalies; pipe output to a file: flowpatrol monitor... > logs.txt. Follow up with flowpatrol alert-setup --webhook your_url to notify on breaches.
  2. Running a compliance audit: Use flowpatrol check-compliance --ruleset gdpr --output audit.json on a dataset. In a script, combine it: export FLOWPATROL_API_KEY=key flowpatrol check-compliance --ruleset gdpr cat audit.json | jq '.results' This generates a report for reviewing compliance issues.

Graph Relationships

  • Related to cluster: "financial" (e.g., shares tools with other financial monitoring skills).
  • Connected via tags: "operations" (links to operational tools), "flowpatrol" (specific to FlowPatrol ecosystem).
  • Potential edges: Integrates with "compliance-checker" skill for enhanced auditing, and "alert-system" for notification workflows.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.18%
按下载量换算49

Claude

30.36%
按下载量换算40

Cursor

19.36%
按下载量换算26

Gemini CLI

8.45%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills