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

sinkronsinkron 命令行

Agent Skill

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

总安装

13,430

周安装

571

GitHub Stars

公开资料未说明

下载量

4,705
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sinkron

简介

sinkron 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 主要功能是使用 Sinkron CLI 和 Python SDK 为 AI 代理提供永久电子邮件身份。
  • 通过 openclaw skills install 命令从 ClawHub 安装,需提供 SINKRON_TOKEN。
  • 建议在使用前检查维护状态及是否会触发邮件发送或外部服务集成。
  • sinkron 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
sinkron
version
1.0.7
description
>
homepage
https://www.sinkron.id
source_repository
https://github.com/zororaka00/sinkron
pypi_package
https://pypi.org/project/sinkron/
pypi_package_version
1.0.2
install
pip install sinkron==1.0.2
author
username
@zororaka00
name
Web3 Hungry
x_account
https://x.com/web3hungry
category
utilities
tags
required_env_vars
required
true
origin
self-issued
how_obtained
>
storage
secret manager or restricted environment variable — never source code or logs
rotation
rotate periodically or after any suspected exposure
primary_credential
SINKRON_TOKEN

Sinkron

Sinkron enables AI agents to own permanent email addresses and manage inboxes programmatically via a CLI and Python SDK.

Authentication model: SINKRON_TOKEN is self-issued by the Sinkron platform — generated once by the Sinkron backend when sinkron register is run, printed to the CLI, and never again retrievable. There is no third-party OAuth, no external credential service. Existing agents reuse their token from a prior registration.

Official Website: https://www.sinkron.id\ Source: https://github.com/zororaka00/sinkron\ PyPI: https://pypi.org/project/sinkron/


⚠️ Security Pre-flight Checklist

Complete every item before installation. Do not skip.

1. Verify Provenance

2. Inspect the Package Before Installing

# Download wheel/tarball without installing, then inspect contents
pip download sinkron==X.Y.Z --no-deps -d /tmp/sinkron-inspect
ls /tmp/sinkron-inspect/
# Unzip the .whl (it's a zip) and review .py source files for
# unexpected network callbacks, obfuscated code, or telemetry

3. Install in an Isolated Environment First

# Preferred: use a container or VM for initial testing
docker run --rm -it python:3.11-slim bash
# Inside container:
pip install sinkron==X.Y.Z
sinkron --help

4. Understand Token Origin Before Use

SINKRON_TOKEN is self-issued — here is exactly where it comes from:

ScenarioHow to obtain the token
New agentRun sinkron register --username USER --name NAME. The Sinkron backend generates the token and prints it once in the CLI response. Copy it immediately.
Existing agentToken was issued during a prior sinkron register. Set it directly via SINKRON_TOKEN env var.

The token never comes from a URL fetch, a third-party service, or this skill itself — only from the Sinkron backend's register response.

After obtaining the token:

  • [ ] Store it immediately in a secret manager or restricted .env file.
  • [ ] Clear terminal / shell history after the token is displayed.
  • [ ] Confirm it is not present in logs, CI output, or version-controlled files.
  • [ ] Rotate periodically or after any suspected exposure.

Installation

Step 1 — Check the latest pinned version on PyPI

pip index versions sinkron

Step 2 — Install with a pinned version

# Preferred (pinned version)
pip install sinkron==X.Y.Z

# Alternative via uv (also pin version)
uv tool install sinkron==X.Y.Z
⚠️ Never install without a pinned version. Unpinned installs may pull unreviewed future versions.

Step 3 — Validate installation

sinkron --help

Best Practice Usage Model

1. Installation Policy

Before performing any Sinkron operation:

  • Verify sinkron is installed.
  • If not, follow the Installation section above (provenance check first).
  • Validate with sinkron --help — do not assume success without this step.

2. Token Lifecycle & Management

Where SINKRON_TOKEN comes from

New agent   → sinkron register --username USER --name NAME
                ↳ Sinkron backend responds with: token: <YOUR_TOKEN>
                ↳ Copy this token immediately — it is shown only once
                ↳ Store in secret manager or restricted env var

Existing agent → token was issued during prior registration
                ↳ Set SINKRON_TOKEN directly from secure storage

No third-party service, no OAuth flow, no external dashboard — the token is exclusively generated by the Sinkron backend.

Using the token safely

# After registration: store token (clear shell history after)
export SINKRON_TOKEN="token-from-sinkron-register-output"
sinkron config --token "$SINKRON_TOKEN"

# In CI/CD: inject via secret manager — never hard-code
sinkron config --token "$SINKRON_TOKEN"
  • Never log, print, or expose tokens in shell history, logs, or CI artifacts.
  • Use sinkron health to check if Sinkron platform is active.
  • Rotate tokens periodically and immediately after any suspected exposure.

3. Idempotent Agent Registration

Before registering, check if the username already exists:

sinkron agent USERNAME

Only register if it does not exist:

sinkron register --username USER --name NAME

This prevents duplication and ensures predictable automation flows.


4. Safe Inbox Handling

  • Use pagination — avoid fetching large inboxes at once.
  • Prefer --search for filtered access.
  • Never delete blindly — always review IDs first.

Safe flow:

  1. sinkron inbox --search KEYWORD
  2. Review IDs
  3. sinkron delete-messages --ids 1,2,3

5. Automation Strategy

Always start with a health check:

sinkron health || exit 1
  • Log non-sensitive outputs only.
  • Implement retry logic on API failures.
  • Inject SINKRON_TOKEN via CI secret manager — never hard-code in pipeline files.

6. Python SDK Best Practices

import os
from sinkron import SinkronClient

token = os.getenv("SINKRON_TOKEN")
if not token:
    raise EnvironmentError(
        "SINKRON_TOKEN is not set. "
        "Obtain it from `sinkron register` output and store in a secret manager."
    )

client = SinkronClient(token=token)
messages = client.inbox(page=1)
  • Initialize client once per runtime.
  • Never hardcode tokens — use environment variables exclusively.
  • Implement exponential backoff on failures.

Architecture

Sinkron exposes two operational layers:

  1. CLI — operational / DevOps workflows
  2. Python SDK — programmatic / application integration

Both communicate with the same Sinkron backend API.


Operational Requirements

  • Python 3.8+
  • Internet connectivity
  • SINKRON_TOKEN environment variable (self-issued via sinkron register)
  • Isolated environment (container/VM) recommended for first-time setup

Security Guidelines

  • Verify package provenance and inspect source code before installing.
  • Pin to a specific package version — never install unpinned.
  • Store SINKRON_TOKEN in a secret manager or restricted env var — never in source code.
  • Use sinkron health to check if Sinkron platform is active instead of viewing config.
  • Rotate tokens periodically and after any suspected exposure.
  • Restrict shell history after setting tokens (HISTCONTROL=ignorespace or read -s).
  • Test in an isolated environment before production deployment.

Observability Recommendations

Log: health status, message counts, deletion results.

Do NOT log: tokens, email contents, sensitive metadata.


CLI Commands

Health Check

sinkron health

Register New Agent

sinkron register --username USER --name NAME
SINKRON_TOKEN is issued here. The Sinkron backend generates and prints the token once in the response. Copy it immediately and store securely. Do not run in logged or shared environments. `` Registration successful. username: myagent email: myagent@sinkron.id token: snk_xxxxxxxxxxxxxxxxxxxxxxxx ← copy immediately, store securely ` Existing agents with a prior token: skip this step, set SINKRON_TOKEN` directly.

Get Inbox

sinkron inbox [--page N] [--search KEYWORD]

Check Email Exists

sinkron check ADDRESS

Get Message

sinkron message ID

Delete Messages

sinkron delete-messages --ids 1,2,3

Delete Inbox

sinkron delete-inbox [--force]

Get Agent Info

sinkron agent USERNAME

Check Platform Status

# Use this command to check if Sinkron platform is active
sinkron health

Set Token

# Always load from environment variable
sinkron config --token "$SINKRON_TOKEN"

Clear Token

sinkron config --clear-token

Automation Patterns

Minimal Safe Workflow

sinkron health || exit 1
sinkron inbox --page 1

Safe Deletion Pattern

sinkron inbox --search "alert"
# Review IDs before deleting
sinkron delete-messages --ids 10,11

Failure Handling Strategy

  1. Authentication error → prompt token reconfiguration via SINKRON_TOKEN env var.
  2. Network error → retry with exponential backoff.
  3. Empty inbox → return structured empty response.
  4. Invalid ID → prompt verification.

Fail predictably. Avoid silent errors.


Production Readiness Checklist

  • [ ] Provenance verified: homepage, GitHub repo, PyPI owner all confirmed
  • [ ] Package source code inspected (no unexpected network callbacks or telemetry)
  • [ ] Pinned version used during install
  • [ ] Tested in isolated environment (container/VM) first
  • [ ] sinkron --help confirms installation
  • [ ] SINKRON_TOKEN obtained from sinkron register output (new) or prior registration (existing)
  • [ ] Token stored in secret manager or restricted env var immediately after registration
  • [ ] Shell history cleared after token was displayed
  • [ ] Token not present in logs, CI output, or version-controlled files
  • [ ] sinkron health integrated at workflow start (check if platform is active)
  • [ ] sinkron health || exit 1 integrated at workflow start
  • [ ] Logging sanitized (no tokens, no sensitive metadata)
  • [ ] Retry strategy implemented
  • [ ] Safe deletion logic confirmed (no blind bulk deletes)

Conclusion

This skill provides permanent email identity and inbox automation for AI agents via the Sinkron platform.

SINKRON_TOKEN is self-issued by the Sinkron backend at registration — not by any third party. When used with verified provenance, pinned versions, secure token handling, and controlled deletion flows, this skill is production-safe and automation-ready.

If package provenance cannot be confirmed, do not install. Treat the skill as untrusted until source verification is complete.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.58%
按下载量换算3,979

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills