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

freeagent-apifreeagent API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

710

周安装

29

GitHub Stars

15

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/markpitt/claude-skills --skill freeagent-api

简介

freeagent-api 用于辅助 API 设计、接口文档和服务集成说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿或检查字段命名。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中支持前后端联调。
  • 使用时需确认真实业务语义、鉴权方式和错误处理规则。
  • 生成接口文档时应从现有代码或样例中提取事实,避免凭空补字段。

SKILL.md

FreeAgent API Orchestration Skill

FreeAgent is an online accounting system for freelancers and small businesses. This skill provides intelligent navigation to FreeAgent API resources and orchestrates common workflows.

Security & Authorization

This skill interacts with live financial data. The following rules are mandatory and must never be skipped.

Write Operation Policy (POST / PUT / DELETE)

Before executing any state-changing API call:

  1. Show a preview — Display the full request (HTTP method, endpoint, JSON body) and describe in plain language exactly what will change in the user's account.
  2. Wait for explicit confirmation — Do not proceed until the user replies with an unambiguous affirmative (e.g., "yes", "confirm", "proceed"). Treat ambiguous replies as a no.
  3. Sandbox by default — Use https://api.sandbox.freeagent.com/v2/ for all write operations unless the user explicitly names the production environment.

Read-Only Default

Treat every incoming request as read-only analysis unless the user explicitly asks to create, update, or delete data. When intent is ambiguous, ask before making any changes — never infer write intent.

High-Risk Operations (Confirm Twice)

For the operations below, show the preview, receive one confirmation, then ask a second time before executing:

  • Deleting any financial record (invoice, expense, bank transaction, contact, etc.)
  • Creating or modifying bank transactions or reconciliation records
  • Bulk operations that affect multiple records in a single request
  • Changing invoice status (e.g., marking as sent, voiding, applying a credit note)

Token & Credential Handling

  • Never log, echo, or display the value of FREEAGENT_ACCESS_TOKEN or FREEAGENT_REFRESH_TOKEN.
  • Never store credentials in source code — use environment variables only.
  • If a token appears expired (401 response), guide the user through re-authentication rather than attempting to refresh silently without notification.

Quick Reference: Which Resource Do I Need?

TaskLoad ResourceAPI Domains
Set up OAuth, manage tokens, test APIresources/authentication-setup.mdOAuth 2.0, token management
Create/update contacts, manage clients/suppliersresources/contacts-organizations.mdContacts, companies, users
Manage invoices, projects, expenses, timeslipsresources/accounting-objects.mdCore financial entities
Bank accounts, transactions, reconciliationresources/banking-financial.mdBanking, cash flow
Error handling, rate limits, retries, cachingresources/advanced-patterns.mdProduction patterns
Common workflows, code examples, integration tipsresources/examples.mdReal-world usage
All endpoints (reference only)resources/endpoints.mdComplete API reference

Orchestration Protocol

Phase 1: Task Analysis

Identify what the user needs:

By Resource Type:

  • Authentication issue?authentication-setup.md
  • Managing contacts/clients?contacts-organizations.md
  • Financial data (invoices, expenses, projects)?accounting-objects.md
  • Banking/reconciliation?banking-financial.md
  • Error or production concern?advanced-patterns.md
  • Practical example needed?examples.md

By HTTP Method:

  • GET: List or retrieve → check relevant domain resource
  • POST: Create → load resource file, check required fields
  • PUT: Update → load resource file, verify patch fields
  • DELETE: Remove → check resource-specific constraints

Phase 2: Resource Navigation

Load the appropriate resource file and:

  1. Find the endpoint section (e.g., "Contacts", "Invoices", "Bank Accounts")
  2. Review required/optional parameters
  3. Check request and response formats
  4. Use provided curl or Python examples

For template code: templates/api-request-template.sh (bash) or templates/python-client.py (Python)

Phase 3: Execution & Validation

Before API call:

  • Verify authentication is set up (check authentication-setup.md if needed)
  • Validate required fields are present
  • Format dates as ISO 8601 (YYYY-MM-DD) and timestamps (YYYY-MM-DDTHH:MM:SSZ)
  • Use correct resource URLs (e.g., https://api.freeagent.com/v2/contacts/123)
  • For POST / PUT / DELETE: Follow the Write Operation Policy — show a preview and obtain explicit user confirmation before proceeding. Use sandbox URL unless the user has explicitly requested production.

During API call:

  • Use templates as starting points
  • Monitor rate limit headers: X-RateLimit-Remaining
  • Implement retry logic for 429 errors (see advanced-patterns.md)

After API call:

  • Check response status code
  • Parse JSON response (resource name is top-level key)
  • Apply error handling patterns if needed

Quick Start: Authentication

  1. Create OAuth app: https://dev.freeagent.com/
  2. Get authorization code: https://api.freeagent.com/v2/approve_app?client_id=YOUR_ID
  3. Exchange for tokens at https://api.freeagent.com/v2/token_endpoint
  4. Store in environment variables: FREEAGENT_ACCESS_TOKEN, FREEAGENT_REFRESH_TOKEN
  5. Include in every request: Authorization: Bearer $FREEAGENT_ACCESS_TOKEN

→ See Authentication & Setup for detailed walkthrough

API Domain Overview

Production URL: https://api.freeagent.com/v2/ Sandbox URL: https://api.sandbox.freeagent.com/v2/ (test without affecting production)

DomainPrimary EndpointsUse Case
Authentication/token_endpointOAuth flows, token refresh
Contacts & Organizations/contacts, /company, /usersClient/supplier management
Accounting Objects/invoices, /projects, /expenses, /timeslips, /estimates, /credit_notesCore financial workflow
Banking & Financial/bank_accounts, /bank_transactions, /categories, /tasksCash flow, reconciliation

Rate Limits: 120 requests/minute, 3600 requests/hour Response Format: JSON with resource wrapper (e.g., {"contact": {...}} or {"contacts": [...]})

Common HTTP Patterns

OperationMethodExample
List itemsGETGET /v2/contacts?view=active&page=1&per_page=100
Get one itemGETGET /v2/contacts/123
Create itemPOSTPOST /v2/contacts (with JSON body)
Update itemPUTPUT /v2/invoices/456 (with partial JSON)
Delete itemDELETEDELETE /v2/timeslips/789
Filter resultsGET params?view=open_or_overdue, ?updated_since=2025-01-01T00:00:00Z

Templates & Code Examples

Bash/cURL Template: templates/api-request-template.sh

  • Flexible curl template for any endpoint
  • GET/POST/PUT/DELETE support
  • Header and parameter configuration

Python Client: templates/python-client.py

  • Reusable FreeAgentClient class
  • Error handling and rate limit support
  • Convenience methods for common resources

Practical Examples: resources/examples.md

  • Real-world workflows (create invoice, log timeslip, etc.)
  • Python code patterns with the client class
  • Error handling examples
  • Bulk operations (import/export)

Resource Files Summary

FileLinesFocus
authentication-setup.md~180OAuth setup, token management, security
contacts-organizations.md~250Contact CRUD, bulk operations, company info
accounting-objects.md~350Invoices, projects, expenses, timeslips, pagination
banking-financial.md~250Bank accounts, transactions, reconciliation, categories
advanced-patterns.md~350Error handling, rate limits, retries, caching, validation
examples.md~400Practical code examples, integration patterns
endpoints.md~300Complete API reference (use for quick lookup)

Troubleshooting Quick Links

401 UnauthorizedAuthentication Setup 422 Validation ErrorAdvanced Patterns 429 Rate LimitAdvanced Patterns Specific Endpoint Help → Check relevant domain resource file above


Remember: Load only the resource file(s) you need for the current task. Start with the Quick Reference table above to identify which resource contains your answer.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.61%
按下载量换算59

OpenCode

23.24%
按下载量换算53

Antigravity

17.75%
按下载量换算41

windsurf

11.43%
按下载量换算26

trae

7.13%
按下载量换算16

github-copilot

3.04%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills