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

sync-sdk-skillsync SDK 技能

Agent Skill

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

总安装

1,038

周安装

42

GitHub Stars

73

下载量

326
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/base44/skills --skill sync-sdk-skill

简介

用于在 Codex、Claude、Cursor、Gemini CLI 中查找和筛选相关信息。

  • 支持根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合原始 README 和仓库内容进一步核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要操作。
  • 安装方式:通过 GitHub 仓库使用 npx 命令添加。

SKILL.md

Sync SDK Skill

Synchronize the skills/base44-sdk/ skill with the latest SDK source code from the Base44 SDK repository.

Usage

When activated, this command will ask for:

  1. SDK source folder path (required) - The local path to the Base44 SDK source code
  2. Documentation URL (optional) - URL to fetch additional documentation

Steps

Step 1: Gather Input

Ask the user for the required inputs using the AskQuestion tool if available, otherwise ask conversationally:

Required:

  • SDK source folder path (e.g., ~/projects/base44-sdk or /Users/me/base44-sdk)

Optional:

  • Documentation URL (e.g., https://docs.base44.com/sdk)

If the user provided these in the initial prompt, use those values.

Step 2: Validate Source Folder

  1. Check that the provided path exists and contains SDK source code
  2. Look for these key indicators:

- package.json with @base44/sdk or similar SDK-related content - src/ directory with module implementations - TypeScript/JavaScript files with SDK module exports (e.g., entities.ts, auth.ts, client.ts)

If validation fails, ask the user to verify the path.

Step 3: Discover SDK Modules

Scan the SDK source folder to find all available modules. Look for:

  1. Module files in directories like:

- src/ - src/modules/ - lib/

  1. For each module, extract:

- Module name and exports - Available methods and their signatures - Method parameters and types - Return types - Usage examples (if present in source or JSDoc) - Submodules (e.g., integrations.Core, integrations.custom)

  1. Parse module definitions from:

- TypeScript interfaces and types - Class definitions and methods - JSDoc comments and annotations - Export statements

  1. Key modules to look for:

- entities - CRUD operations on data models - auth - Login, register, user management - agents - AI conversations and messages - functions - Backend function invocation - integrations - AI, email, file uploads, custom APIs - connectors - OAuth tokens (service role only) - analytics - Track custom events - appLogs - Log user activity - users - User invitations - client - Client creation and configuration

Step 4: Read Existing Skill

Read the current skill files to understand what needs updating:

skills/base44-sdk/
├── SKILL.md
└── references/
    ├── analytics.md
    ├── app-logs.md
    ├── auth.md
    ├── base44-agents.md
    ├── client.md
    ├── connectors.md
    ├── entities.md
    ├── functions.md
    ├── integrations.md
    └── users.md

Step 5: Compare and Identify Changes

Compare discovered SDK modules with existing skill documentation:

  1. New modules: Modules in source but not in skill references
  2. New methods: Methods added to existing modules
  3. Updated methods: Methods with changed signatures, parameters, or return types
  4. Deprecated methods: Methods marked as deprecated
  5. Removed methods: Methods in skill but not in source (verify before removing)
  6. New parameters: New options added to existing methods

Create a summary of changes to show the user before applying.

Step 6: Fetch External Documentation (Optional)

If a documentation URL was provided:

  1. Fetch the documentation page
  2. Extract relevant module and method documentation
  3. Use this to supplement information from source code
  4. Cross-reference for accuracy

Step 7: Update Skill Files

For each change identified:

Update Reference Files

For each module, update or create references/{module-name}.md:

# {ModuleName} Module

{Description from source}

## Overview

{Brief explanation of what the module does}

## Methods

### `{methodName}(params)`

{Method description}

**Parameters:**

| Parameter | Type | Description | Required |
|-----------|------|-------------|----------|
| `param1` | `string` | {description} | Yes |
| `options` | `object` | {description} | No |

**Returns:** `Promise<{ReturnType}>`

**Example:**

const result = await base44.{module}.{methodName}({ param1: "value" });


## Notes

{Any important behavioral notes, frontend/backend availability, etc.}

Update SKILL.md

  1. Update the SDK Modules table if modules changed
  2. Update Quick Start if core patterns changed
  3. Update Module Selection section with new capabilities
  4. Update Common Patterns with new usage examples
  5. Update Frontend vs Backend table if availability changed
  6. Keep the existing structure and formatting
  7. Do NOT change the frontmatter description unless explicitly asked

Step 8: Present Summary

After updates, present a summary to the user:


## Sync Summary

### Files Updated

- references/new-module.md (created)
- references/entities.md (updated methods)
- SKILL.md (updated module table)

### Changes Made

- Added new module: `newModule`
- Updated `entities` module: added `bulkCreate()` method
- Added new parameter `options.cache` to `auth.me()`
- Deprecated `integrations.legacyMethod()`

### Manual Review Recommended

- [List any changes that need verification]

Important Notes

  • Preserve existing content: Don't remove detailed explanations, examples, or warnings unless they're outdated
  • Keep formatting consistent: Match the existing style of SKILL.md and reference files
  • Maintain progressive disclosure: Keep detailed docs in references, summaries in SKILL.md
  • Flag uncertainties: If source code is unclear, flag it for manual review
  • Document frontend/backend availability: Always note if a method is backend-only (e.g., connectors, asServiceRole)
  • Preserve type information: Include TypeScript types in method signatures
  • Keep examples practical: Examples should reflect real-world usage patterns

Module-Specific Guidelines

entities.md

  • Document CRUD methods: create, get, list, filter, update, delete
  • Include query filter syntax and operators
  • Document subscribe() for real-time updates
  • Note RLS/FLS security implications if applicable

auth.md

  • Cover all authentication methods (email/password, OAuth, etc.)
  • Document me(), updateMe(), logout()
  • Include redirect flow examples
  • Note token handling

integrations.md

  • Document Core submodule methods (InvokeLLM, SendEmail, UploadFile, GenerateImage)
  • Document custom.call() for custom integrations
  • Include AI prompt examples

connectors.md

  • Note this is service role / backend only
  • Document getAccessToken() for OAuth providers

functions.md

  • Show both frontend invocation and backend implementation
  • Include createClientFromRequest() usage
  • Document asServiceRole access patterns

Troubleshooting

IssueSolution
Can't find module filesTry searching for export class or export function patterns
Types not detectedLook for .d.ts files or inline TypeScript annotations
Missing method descriptionsCheck for JSDoc comments (/** ... */) above methods
Submodule structureModules like integrations.Core may be in nested files
Return types unclearCheck TypeScript generics and Promise wrappers

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.54%
按下载量换算113

Claude

34.57%
按下载量换算113

Cursor

18.41%
按下载量换算60

Gemini CLI

10.33%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills