Sign in

Create a repository for the authenticated user

documented

Create a new repository for the authenticated user.

POST /user/reposRepositoriesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.github.com/user/repos" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/vnd.github+json" \
  -H "Content-Type: application/json" \
  -H "User-Agent: Keychains-GitHub" \
  -d '{
    "name": "{{$name}}",
    "description": "{{$description}}",
    "homepage": "{{$homepage}}",
    "private": {{$private}},
    "has_issues": {{$has_issues}},
    "has_projects": {{$has_projects}},
    "has_wiki": {{$has_wiki}},
    "has_discussions": {{$has_discussions}},
    "team_id": {{$team_id}},
    "auto_init": {{$auto_init}}
  }'