Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

atxp-gitatxp GIT 命令行

Agent Skill

atxp-git 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,692

周安装

242

GitHub Stars

9

下载量

1,994
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/atxp-dev/cli --skill atxp-git

简介

atxp-git 为每个 Agent 提供私有 Git 仓库托管服务,支持标准 Git 协议交互与 JWT 鉴权。

  • 适用于代码版本控制、实验分支管理与团队协作开发等软件工程基础场景。
  • 返回带有时效性 JWT 令牌的克隆 URL,默认有效期一小时防止未授权访问扩散。
  • 所有文件操作经由 native Git 执行,MCP 层仅负责权限校验与生命周期管理。
  • atxp-git 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ATXP Git — Agent Repository Hosting

ATXP Git gives each agent a private namespace for Git repositories on code.storage. Agents can create repos, get authenticated clone/push URLs, and interact with them using standard Git commands. The MCP server handles provisioning and access control — all file operations happen through native Git.

Ephemeral Remote URLs

This is the most important concept to understand when using this tool.

Remote URLs returned by remote-url contain a time-limited JWT embedded directly in the URL. This means:

  1. URLs expire. The default TTL is 1 hour (3600 seconds). After expiry, any git clone, git push, git pull, or git fetch using that URL will fail with an authentication error.
  2. URLs are not persistent. Do not store remote URLs in config files, environment variables, or long-lived scripts expecting them to work indefinitely. They are single-use credentials with a short lifespan.
  3. Refresh when expired. When a git operation fails with an auth error, get a fresh URL and update the remote:
# Get a new writable URL
npx atxp@latest git remote-url my-project --writable

# Update the existing remote with the new URL
git remote set-url origin <new-url>

# Retry the operation
git push
  1. No separate credential setup needed. The URL embeds authentication — no git credential helper or SSH key configuration is required.
  2. Read vs. write URLs. Read-only URLs are free. Writable URLs cost $0.01 (this meters storage growth from pushes). Always request read-only unless you need to push.

Practical Workflow for Long-Running Tasks

If your task involves multiple git operations over time:

1. Get a writable URL at the start of your work session
2. Clone and make changes
3. Commit and push before the URL expires (within 1 hour)
4. If you need to push again later, get a fresh URL first

For tasks that may span multiple hours, request a new URL before each push rather than at the start. The --ttl flag can extend expiry up to the server maximum, but planning for refresh is more robust.

Security Model

  • Repos are private by default — only the owner can access them.
  • Public repos allow read-only access from other authenticated users via remote-url with writable: false.
  • Write access requires repo ownership. No collaborator model — repos are single-owner.
  • URLs contain credentials — treat remote-url output like a secret. Do not log, echo, or share writable URLs.
  • Soft-delete — deleted repos become immediately inaccessible but are permanently removed after 30 days.

Commands Reference

CommandCostDescription
npx atxp@latest git create <repoName>$0.50Create a new repository
npx atxp@latest git listFreeList your repositories
npx atxp@latest git remote-url <repoName>FreeGet a read-only authenticated URL
npx atxp@latest git remote-url <repoName> --writable$0.01Get a writable authenticated URL
npx atxp@latest git delete <repoName>FreeSoft-delete a repository
npx atxp@latest git helpFreeShow help

Options

OptionApplies ToDescription
`--visibility <private\public>`createRepository visibility (default: private)
--default-branch <name>createDefault branch name (default: main)
--writableremote-urlRequest a push-capable URL ($0.01 instead of free)
--ttl <seconds>remote-urlURL expiry in seconds (default: 3600)
--limit <n>listMax repos to return (default: 20, max: 100)
--cursor <token>listPagination cursor from a previous response

Repo Naming

Repository names must be lowercase alphanumeric with hyphens and underscores only (e.g., my-project, agent_workspace).

Typical Agent Workflow

# 1. Create a repository ($0.50)
npx atxp@latest git create my-app

# 2. Get a writable URL ($0.01)
npx atxp@latest git remote-url my-app --writable
# Returns: https://t:eyJ...@atxp.code.storage/userid/my-app.git

# 3. Clone, work, push (standard git)
git clone <url>
cd my-app
# ... make changes ...
git add . && git commit -m "initial commit" && git push

# 4. Later — URL expired? Get a fresh one
npx atxp@latest git remote-url my-app --writable
git remote set-url origin <new-url>
git push

Error Responses

ScenarioError message
Not authenticated"ATXP authentication required"
Repo doesn't exist (or private + not owner)"Repository not found"
Write to another user's repo"Permission denied"
Repo name already taken"Repository already exists"
Service unavailable"Service temporarily unavailable. Please retry in a few seconds."
Git ref conflict"Conflict:... Re-read the current state and retry."

Visibility

ModeOwnerOther authenticated users
PrivateFull read/writeNo access
PublicFull read/writeRead-only (via remote-url with read-only default)

Rate Limits

  • Per-client: 120 requests/minute
  • Per-IP: 10,000 requests/minute

Exceeding limits returns HTTP 429 with a Retry-After hint.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.53%
按下载量换算689

Claude

30.17%
按下载量换算602

Cursor

20.13%
按下载量换算401

Gemini CLI

9.13%
按下载量换算182

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills