Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

pocketbasepocketbase 工具

Agent Skill

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

总安装

485

周安装

20

GitHub Stars

3

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/whamp/whamp-claude-tools --skill pocketbase

简介

pocketbase 工具用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词或任务场景进行信息检索,适用于数据库管理场景。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 确认具体用法。
  • 使用前应核实权限范围、维护状态,避免触发联网或文件读写操作。
  • pocketbase 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PocketBase Skill - Comprehensive Reference

Overview

This skill provides modular, searchable documentation for PocketBase development. Use the table of contents below to navigate to specific topics. The researcher-pocketbase agent can efficiently search and extract information from the reference files based on your query. PocketBase is an open source backend in 1 file. It provides a realtime database, authentication, file storage, an admin dashboard and is extendable to much more.

Quick Navigation

For Newcomers

→ Start with Getting Started for initial setup and basic concepts → Review Collections to understand data modeling → See Authentication for user management → Check API Rules & Filters for security

For Implementation

→ Browse Schema Templates for pre-built data models → Use Records API for CRUD operations → Implement Real-time for live updates → Follow Files Handling for file uploads → Read Working with Relations for data relationships

For Production

→ See Going to Production for deployment → Review Security Rules for access control → Check API Reference for complete API documentation

For Advanced Users

→ Explore Go Extensions for custom functionality → Study Event Hooks for automation → Learn Database Operations for advanced queries → Plan data migrations with Data Migration Workflows


Table of Contents

Core Concepts & Setup

TopicDescriptionWhen to Use
Getting StartedInitial setup, quick start, basic conceptsFirst time using PocketBase, initial configuration
CLI CommandsPocketBase CLI, serve, migrate, admin, superuserDevelopment workflow, server management, migrations
CollectionsCollection types, schema design, rules, indexesDesigning data models, creating collections
AuthenticationUser registration, login, OAuth2, JWT tokensBuilding user accounts, login systems
API Rules & FiltersSecurity rules, filtering, sorting, query optimizationControlling data access, writing efficient queries
Files HandlingFile uploads, thumbnails, CDN, securityManaging file uploads, image processing
Working with RelationsOne-to-many, many-to-many, data relationshipsBuilding complex data models, linking collections
Going to ProductionDeployment, security hardening, monitoring, backupsMoving from development to production
Data Migration WorkflowsImport/export strategies, scripts, and toolingPlanning and executing data migrations

API Reference

EndpointDescriptionReference File
Records APICRUD operations, pagination, filtering, batch operationsapi_records.md
Realtime APIWebSocket subscriptions, live updates, event handlingapi_realtime.md
Files APIFile uploads, downloads, thumbnails, access controlapi_files.md
Collections APIManage collections, schemas, rules, indexesapi_collections.md
Settings APIApp configuration, CORS, SMTP, general settingsapi_settings.md
Logs APIAccess logs, authentication logs, request logsapi_logs.md
Crons APIBackground jobs, scheduled tasks, automationapi_crons.md
Backups APIDatabase backups, data export, disaster recoveryapi_backups.md
Health APISystem health, metrics, performance monitoringapi_health.md

SDKs & Development Tools

SDKDescriptionReference File
JavaScript SDKFrontend integration, React, Vue, vanilla JSjs_sdk.md
Go SDKServer-side integration, custom appsgo_sdk.md
Dart SDKMobile app integration (Flutter, etc.)dart_sdk.md

Go Extension Framework

TopicDescriptionReference File
Go OverviewProject structure, basic concepts, getting startedgo_overview.md
Event HooksBefore/After hooks, custom logic, automationgo_event_hooks.md
RoutingCustom API endpoints, middleware, handlersgo_routing.md
DatabaseQuery builder, transactions, advanced queriesgo_database.md
RecordsRecord CRUD, validation, custom fieldsgo_records.md
CollectionsDynamic schemas, collection managementgo_collections.md
MigrationsSchema changes, version control, deploymentgo_migrations.md
Jobs & SchedulingBackground tasks, cron jobs, queuesgo_jobs_scheduling.md
Sending EmailsSMTP configuration, templated emailsgo_sending_emails.md
Rendering TemplatesHTML templates, email templates, PDFsgo_rendering_templates.md
Console CommandsCLI commands, migrations, maintenancego_console_commands.md
RealtimeCustom realtime logic, event handlinggo_realtime.md
File SystemFile storage, CDN, external storage providersgo_filesystem.md
LoggingStructured logging, monitoring, debugginggo_logging.md
TestingUnit tests, integration tests, test helpersgo_testing.md
MiscellaneousAdvanced features, utilities, tipsgo_miscellaneous.md
Record ProxyDynamic record behavior, computed fieldsgo_record_proxy.md

Reference Materials

FileDescriptionContents
Security RulesComprehensive security patternsOwner-based access, role-based access, API rules
Schema TemplatesPre-built data modelsBlog, E-commerce, Social Network, Forums, Task Management
API ReferenceComplete API documentationAll endpoints, parameters, examples

Development Resources

ResourceDescriptionLocation
ScriptsExecutable utilities for developmentscripts/ directory
AssetsTemplates and configuration filesassets/ directory
Docker ConfigProduction-ready Docker setupassets/docker-compose.yml
Caddy ConfigAutomatic HTTPS configurationassets/Caddyfile
Frontend TemplateHTML/JS integration exampleassets/frontend-template.html
Collection SchemaBlank collection templateassets/collection-schema-template.json

How to Use This Skill

For the Researcher-Pocketbase Agent

This skill is designed for efficient information retrieval. When researching PocketBase topics:

  1. Start with Core Concepts - Review references/core/ for foundational knowledge
  2. Find API Details - Use references/api/ for specific API endpoints
  3. Look up Go Extensions - Check references/go/ for custom functionality
  4. Find Examples - Reference references/templates/ and references/security_rules.md

Topic Categories

Setup & Configuration

  • Getting Started → Initial setup and basic concepts
  • CLI Commands → Development workflow, server management
  • Going to Production → Deployment and production configuration
  • Collections → Data model design

Data Management

  • Collections → Creating and managing collections
  • Working with Relations → Linking data across collections
  • Files Handling → File uploads and storage

Security & Access Control

  • Authentication → User management
  • API Rules & Filters → Access control and queries
  • Security Rules → Comprehensive security patterns

API Integration

  • Records API → CRUD operations
  • Realtime API → Live updates
  • Files API → File management
  • Other API endpoints → Settings, logs, backups, health

Frontend Development

  • JavaScript SDK → Web integration
  • Schema Templates → Pre-built data models
  • Frontend Template → Integration example

Backend Development

  • Go SDK → Server-side integration
  • Go Extensions → Custom functionality
  • Console Commands → CLI tools

Common Query Patterns

"How do I..."

  • How do I create a blog? → Schema Templates
  • How do I set up authentication? → Authentication
  • How do I upload files? → Files Handling
  • How do I add real-time updates? → Realtime API

"How to configure..."

  • How to configure production? → Going to Production
  • How to set up security rules? → API Rules & Filters, Security Rules
  • How to create custom endpoints? → Go Routing
  • How to schedule jobs? → Jobs & Scheduling

"What's the best way to..."

  • What's the best way to structure my data? → Collections, Working with Relations
  • What's the best way to secure my API? → API Rules & Filters, Security Rules
  • What's the best way to optimize queries? → API Rules & Filters
  • What's the best way to handle files? → Files Handling

"Error:..."

  • CORS errors → Authentication, Going to Production
  • Permission errors → API Rules & Filters, Security Rules
  • File upload errors → Files Handling
  • Slow queries → API Rules & Filters (indexing)

"Need to implement..."

  • Need user roles? → Authentication, Security Rules
  • Need file uploads? → Files Handling
  • Need real-time chat? → Realtime API
  • Need custom logic? → Go Extensions

Quick Reference Index

Common Tasks

Code Examples

Best Practices


File Locations

Core Documentation

/references/core/
├── getting_started.md          # Initial setup and concepts
├── cli_commands.md             # CLI commands and server management
├── collections.md              # Data modeling and collections
├── authentication.md           # User management
├── api_rules_filters.md        # Security and querying
├── files_handling.md           # File uploads and storage
├── working_with_relations.md   # Data relationships
└── going_to_production.md      # Deployment guide

API Reference

/references/api/
├── api_records.md              # CRUD operations
├── api_realtime.md             # WebSocket subscriptions
├── api_files.md                # File management
├── api_collections.md          # Collection operations
├── api_settings.md             # App configuration
├── api_logs.md                 # Logging
├── api_crons.md                # Background jobs
├── api_backups.md              # Backups
└── api_health.md               # Health checks

Go Extensions

/references/go/
├── go_overview.md              # Getting started
├── go_event_hooks.md           # Event system
├── go_routing.md               # Custom routes
├── go_database.md              # Database operations
├── go_records.md               # Record management
├── go_collections.md           # Collection management
├── go_migrations.md            # Schema changes
├── go_jobs_scheduling.md       # Background tasks
├── go_sending_emails.md        # Email integration
├── go_rendering_templates.md   # Templates
├── go_console_commands.md      # CLI tools
├── go_realtime.md              # Custom realtime
├── go_filesystem.md            # File storage
├── go_logging.md               # Logging
├── go_testing.md               # Testing
├── go_miscellaneous.md         # Advanced topics
└── go_record_proxy.md          # Dynamic behavior

SDKs

/references/sdk/
├── js_sdk.md                   # JavaScript
├── go_sdk.md                   # Go
└── dart_sdk.md                 # Dart

Templates & Security

/references/
├── security_rules.md           # Security patterns
├── templates/
│   └── schema_templates.md     # Pre-built schemas
└── api_reference.md            # Complete API docs

Information Architecture

This skill follows a modular architecture designed for progressive disclosure:

  1. Quick Access - SKILL.md provides immediate overview and navigation
  2. Focused Topics - Each reference file covers one specific area
  3. Cross-References - Files link to related topics
  4. Examples First - Practical code examples in each file
  5. Searchable - Clear titles and descriptions for quick lookup

When to Use Each Section

references/core/

  • New users starting with PocketBase
  • Understanding fundamental concepts
  • Basic implementation tasks

references/api/

  • Implementing specific API features
  • Looking up endpoint details
  • API integration examples

references/go/

  • Building custom PocketBase extensions
  • Advanced functionality
  • Custom business logic

references/sdk/

  • Frontend or mobile integration
  • SDK-specific features
  • Language-specific examples

references/security_rules.md

  • Complex access control scenarios
  • Security best practices
  • Multi-tenant applications

references/templates/

  • Rapid prototyping
  • Common application patterns
  • Pre-built data models

Notes for Researchers

This skill contains over 30 reference files covering all aspects of PocketBase development. The researcher-pocketbase agent should:

  1. Match queries to appropriate topic areas
  2. Extract specific information from relevant files
  3. Provide comprehensive answers using multiple references
  4. Suggest related topics for further reading
  5. Identify best practices and common pitfalls

Each reference file is self-contained with examples, explanations, and best practices. Use the table of contents above to quickly navigate to the most relevant information for any PocketBase-related question.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38%
按下载量换算60

Claude

30.92%
按下载量换算49

Cursor

18.18%
按下载量换算29

Gemini CLI

9.6%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills