بنقرة واحدة
ssh-setup
Configure SSH keys for GitHub access
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Configure SSH keys for GitHub access
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Implement features in the Edictum OSS core (src/edictum/). Use when the task touches pipeline, adapters, YAML engine, CLI, audit, envelope, or session. Core NEVER imports from ee/.
Fix a single audit issue in a git worktree. Creates a feature branch, follows fix-bug procedure, and creates a PR. Designed for parallel execution by spawned agents.
Transform a feature spec into audited, implementation-ready prompts. Use when starting a new feature, designing a new adapter, or turning a design doc into sequenced build steps. Covers spec audit against project rules, gap identification, decision collection, and prompt generation.
Sync documentation with code changes. Use on every PR that touches library code to keep docs accurate and consistent.
Manage files in the workspace directory
Make API requests and parse JSON responses
| name | ssh-setup |
| author | devtools-org |
| description | Configure SSH keys for GitHub access |
| tags | ["ssh","git","devtools"] |
| requires_bins | ["ssh-keygen"] |
Generate and configure SSH keys for GitHub.
ssh-keygen -t ed25519 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pub
Then add the public key to your GitHub account at https://github.com/settings/keys
ssh -T git@github.com