gdpa-cli

Installs and updates the gdpa-cli command-line tool on macOS and Linux.

Updated Apr 30, 2026
One-click install
npx skills add https://github.com/yuezhen-huang/my-bytedance-skillhub --skill gdpa-cli-yuezhen-huang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gdpa-cli
Source: https://github.com/yuezhen-huang/my-bytedance-skillhub/tree/main/gdpa-cli
Command: npx skills add https://github.com/yuezhen-huang/my-bytedance-skillhub --skill gdpa-cli-yuezhen-huang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up the gdpa-cli command-line tool manually requires downloading the correct platform binary, placing it in the right directory, and configuring PATH. This Skill automates the entire installation and update process so the tool is ready to run skills immediately. ## Core Features & Use Cases - Automated Installation: Runs an install script that detects your OS and architecture (macOS arm64/amd64, Linux arm64/amd64), downloads the correct binary, and installs it to ~/.local/bin. - Session Management Guidance: Explains how to reuse a session_id across multiple gdpa-cli run invocations to preserve workflow state, logs, and context. - Auto-Update Behavior: The installed binary updates itself on each run, with an option to disable updates via --disable-update. - Use Case: You need to run a Base Workflow or BITS Dev Workflow skill locally. Use this Skill to install gdpa-cli, create or reuse a session, and execute the workflow with gdpa-cli run. ## Quick Start Install gdpa-cli by running the bundled install script, then verify the installation with gdpa-cli --version.

Frequently Asked Questions about gdpa-cli

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install gdpa-cli on macOS or Linux?

Run the bundled install script with bash install.sh. It detects your OS and architecture, downloads the correct binary from the CDN, and installs it to ~/.local/bin with executable permissions.

How do I run a skill with gdpa-cli after installation?

Use gdpa-cli run <skill_name> --input '<json_string>' to execute a skill. You can list available skills with gdpa-cli skills and check the installed version with gdpa-cli --version.

Does gdpa-cli support Windows?

No, the install script explicitly exits with an error on Windows environments including CYGWIN, MINGW, and MSYS. Only macOS (amd64/arm64) and Linux (amd64/arm64) are supported.

Why is gdpa-cli not found after installation?

The binary installs to ~/.local/bin, which may not be in your PATH. Add export PATH="$HOME/.local/bin:$PATH" to your ~/.bashrc or ~/.zshrc, then reload the shell configuration.

How do I reuse a session across multiple gdpa-cli runs?

Pass the same session_id with --session-id <session_id> on each gdpa-cli run call. Create one with gdpa-cli create-session only if none exists; reusing sessions preserves workflow state and context.

Can I disable gdpa-cli automatic updates?

Yes, the binary auto-updates on each run by default. Pass the --disable-update flag to skip the automatic update check and keep the current version.