Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

taubyte-core-constraintstaubyte 核心约束

Agent Skill

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

总安装

275

周安装

11

GitHub Stars

公开资料未说明

下载量

89
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/taubyte/skills --skill taubyte-core-constraints

简介

用于查找、检索和筛选相关信息。

  • 适合根据关键词快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验用法。
  • 安装命令:npx skills add https://github.com/taubyte/skills --skill taubyte-core-constraints。
  • 使用前应确认权限范围和维护状态,避免触发联网或文件读写。

SKILL.md

Core Constraints

Must-follow rules

  1. Never ask user to run setup commands manually; agent performs setup.
  2. Run CLI preflight (taubyte-cli-prereqs) before all Taubyte operations.
  3. For Dream/local, never run backend-contacting tau commands before Dream is up and universe exists.
  4. Use dream commands directly; never use tau dream.
  5. Use default universe default unless user explicitly requests another.
  6. After resource creation, push config (tau push project --config-only) before relying on resource visibility.
  7. After code changes, push code (tau push project --code-only) and verify builds/logs.
  8. Never set function timeout to 0; use valid durations (30s, 1m, etc.).
  9. HTTP functions: one function per path+method; never comma-separated methods.
  10. For functions/websites in automation, use empty template; for Go functions, include --language Go.
  11. Use matcher values for DB/storage SDK calls, not human-facing resource names or YAML filenames (description / basename are not runtime keys). The Go string must match YAML match (and regex pattern when useRegex: true). Examples: match: appdatadatabase.New("appdata"); match: /todosdatabase.New("/todos") — leading slash must match exactly.
  12. Do not bypass failing tau push project with direct git operations.
  13. On Git Bash Windows for path-like flags, prefix with MSYS_NO_PATHCONV=1.
  14. Website .taubyte/build.sh must be non-empty and must write deploy output to /out.
  15. Verify project selection with tau --json current before resource mutations.
  16. Website/library git fallback is an exception path only when tau push website|library is unavailable; never apply this exception to project config/code pushes.
  17. Never create website/library without explicit repository strategy:

- use --generate-repository with deterministic --repository-name, or - use explicit existing --repository-name/--repository-id.

  1. After creating website/library, verify repository binding in config (websites/*.yaml or libraries/*.yaml) before pushing.
  2. Go functions: empty.go stays at the function root next to go.mod. Never manually create lib/, never move empty.go under lib/, and never hand-author main.go in the function folder to fix builds. For local WASM verification, use the taubyte/go-wasi Docker recipe in taubyte-go-sdk-constraints — not lib/ + main.go shims.
  3. New project: If the user asked to create a new project, run tau new project + tau select project, then tau --json current and confirm Project matches the new name before any tau import, tau push project, or tau new resource command. Stale selection is the usual cause of “imports pulling the wrong GitHub project.”
  4. Project config notification email: ensure config/config.yaml has a valid notification.email (not ""). Prefer git config user.email; if unavailable, ask the user for the email. Write it as a plain YAML value (no quotes) to avoid mail: no address config-compiler failures.
  5. Push ordering: always push project config first and wait for the latest Config build to succeed before pushing website/library code that depends on those resources being present in config.
  6. HTTP handlers with a body: set headers (e.g. Content-Type) as needed, write the body (Write / equivalent), then Return with the final status as the last step. Returning before writing yields empty or broken JSON and clients that look like “API does nothing.”
  7. After adding or renaming databases or messaging, grep the codebase for database.New( and pubsubnode.Channel( (or equivalent) and diff literals against config/applications/<app>/databases/*.yaml and messaging/*.yaml before declaring the task done.

Database and messaging (config ↔ code)

  • Database: path is config/applications/<app>/databases/<name>.yaml. Every database.New(...) in WASM for that app must use the same string as resource match when useRegex: false. Typical YAML also includes useRegex, access.network, storage.size, replicas.min / replicas.max — follow CLI-generated shapes when unsure.
  • Messaging + PubSub: the messaging resource defines channel.match (and bridges.mqtt / bridges.websocket). PubSub-triggered functions use trigger.type: pubsub and trigger.channel equal to that match. Producers in HTTP code use the same channel string with pubsub/node. When both messaging and function YAML include local, keep them consistent. Enable websocket in messaging config if handlers expose WebSocket().Url() to browsers.
  • Debugging “database open failed”: first compare YAML match vs every database.New literal in that application (including /).

Layout constraints

  • Project has tb_config_<name> + tb_code_<name>.
  • Website/library have separate repositories.
  • Function build layout must be discoverable by build system (avoid misplaced function paths). For Go serverless functions, that means root empty.go only for authored sources; do not invent a lib/ tree or commit ad-hoc main.go beside it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.41%
按下载量换算28

Claude

31.91%
按下载量换算28

Cursor

19.57%
按下载量换算17

Gemini CLI

8.5%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills