
Repo Noob Supreme on the GPT Store
GPT Description
Welcome Message
GPT Prompt Starters
- How do I create a new repository?
- Please delete a repository.
- Show details of a specific repo.
- List all my GitHub repositories.
GPT Action OpenAPI Spec
{ "openapi": "3.1.0", "info": { "title": "Github", "description": "Github for assistant", "version": "v1.0.0" }, "servers": [ { "url": "https://api.github.com" } ], "paths": { "/user/repos": { "post": { "summary": "Create Repository", "operationId": "createRepository", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "private": { "type": "boolean" }, "has_issues": { "type": "boolean" }, "has_projects": { "type": "boolean" }, "has_wiki": { "type": "boolean" } }, "required": [ "name" ] } } } }, "responses": { "201": { "description": "Repository successfully created" }, "422": { "description": "Unprocessable Entity - invalid input" } } } }, "/repos/{owner}/{repo}/contents/{path}": { "get": { "summary": "Get File Contents", "operationId": "getFileContents", "parameters": [ { "name": "owner", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "repo", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "path", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "File contents retrieved successfully" }, "404": { "description": "File not found" } } }, "put": { "summary": "Create or Modify File", "operationId": "createOrUpdateFile", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" }, "content": { "type": "string" }, "sha": { "type": "string" } }, "required": [ "message", "content" ] } } } }, "responses": { "200": { "description": "File updated successfully" }, "201": { "description": "File created successfully" }, "404": { "description": "File not found" }, "422": { "description": "Unprocessable Entity - invalid input" } } }, "delete": { "summary": "Delete File", "operationId": "deleteFile", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "type": "string" }, "sha": { "type": "string" } }, "required": [ "message", "sha" ] } } } }, "responses": { "200": { "description": "File deleted successfully" }, "404": { "description": "File not found" } } } }, "/repos/{owner}/{repo}/issues": { "get": { "summary": "List Issues", "operationId": "listIssues", "parameters": [ { "name": "owner", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "repo", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Issues retrieved successfully" } } }, "post": { "summary": "Create an Issue", "operationId": "createIssue", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" }, "body": { "type": "string" }, "assignee": { "type": "string" }, "milestone": { "type": "integer" }, "labels": { "type": "array", "items": { "type": "string" } } }, "required": [ "title" ] } } } }, "responses": { "201": { "description": "Issue created successfully" }, "422": { "description": "Unprocessable Entity - invalid input" } } } }, "/repos/{owner}/{repo}/issues/{issue_number}": { "get": { "summary": "Get an Issue", "operationId": "getIssue", "parameters": [ { "name": "owner", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "repo", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "issue_number", "in": "path", "required": true, "schema": { "type": "integer" } } ], "responses": { "200": { "description": "Issue retrieved successfully" }, "404": { "description": "Issue not found" } } }, "patch": { "summary": "Update an Issue", "operationId": "updateIssue", "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "title": { "type": "string" }, "body": { "type": "string" }, "assignee": { "type": "string" }, "milestone": { "type": "integer" }, "labels": { "type": "array", "items": { "type": "string" } }, "state": { "type": "string" } }, "required": [ "title" ] } } } }, "responses": { "200": { "description": "Issue updated successfully" }, "422": { "description": "Unprocessable Entity - invalid input" } } } } }, "components": { "schemas": { "User": { "type": "object", "properties": { "login": { "type": "string" }, "id": { "type": "integer" }, "node_id": { "type": "string" }, "avatar_url": { "type": "string" }, "gravatar_id": { "type": "string" }, "url": { "type": "string" }, "html_url": { "type": "string" }, "followers_url": { "type": "string" }, "following_url": { "type": "string" }, "gists_url": { "type": "string" }, "starred_url": { "type": "string" }, "subscriptions_url": { "type": "string" }, "organizations_url": { "type": "string" }, "repos_url": { "type": "string" }, "events_url": { "type": "string" }, "received_events_url": { "type": "string" }, "type": { "type": "string" }, "site_admin": { "type": "boolean" } } }, "Repository": { "type": "object", "properties": { "id": { "type": "integer" }, "node_id": { "type": "string" }, "name": { "type": "string" }, "full_name": { "type": "string" }, "private": { "type": "boolean" }, "owner": { "$ref": "#/components/schemas/User" }, "html_url": { "type": "string" }, "description": { "type": "string" }, "fork": { "type": "boolean" }, "url": { "type": "string" }, "forks_url": { "type": "string" }, "keys_url": { "type": "string" }, "collaborators_url": { "type": "string" }, "teams_url": { "type": "string" }, "hooks_url": { "type": "string" }, "issue_events_url": { "type": "string" }, "events_url": { "type": "string" }, "assignees_url": { "type": "string" }, "branches_url": { "type": "string" }, "tags_url": { "type": "string" }, "blobs_url": { "type": "string" }, "git_tags_url": { "type": "string" }, "git_refs_url": { "type": "string" }, "trees_url": { "type": "string" } }, "Commit": { "type": "object", "properties": { "sha": { "type": "string" }, "node_id": { "type": "string" }, "commit": { "type": "object", "properties": { "author": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "date": { "type": "string" } } }, "committer": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "date": { "type": "string" } } }, "message": { "type": "string" }, "tree": { "type": "string" }, "url": { "type": "string" }, "comment_count": { "type": "integer" }, "verification": { "type": "object", "properties": { "verified": { "type": "boolean" }, "reason": { "type": "string" }, "signature": { "type": "string" }, "payload": { "type": "string" } } } } }, "url": { "type": "string" }, "html_url": { "type": "string" }, "comments_url": { "type": "string" }, "author": { "$ref": "#/components/schemas/User" }, "committer": { "$ref": "#/components/schemas/User" }, "parents": { "type": "array", "items": { "type": "string" } } } }, "Issue": { "type": "object", "properties": { "id": { "type": "integer" }, "node_id": { "type": "string" }, "url": { "type": "string" }, "repository_url": { "type": "string" }, "labels_url": { "type": "string" }, "comments_url": { "type": "string" }, "events_url": { "type": "string" }, "html_url": { "type": "string" }, "number": { "type": "integer" }, "state": { "type": "string" }, "title": { "type": "string" }, "body": { "type": "string" }, "user": { "$ref": "#/components/schemas/User" }, "labels": { "type": "array", "items": { "type": "string" } }, "assignee": { "$ref": "#/components/schemas/User" }, "milestone": { "type": "integer" }, "locked": { "type": "boolean" }, "active_lock_reason": { "type": "string" }, "comments": { "type": "integer" }, "pull_request": { "type": "object", "properties": { "url": { "type": "string" }, "html_url": { "type": "string" }, "diff_url": { "type": "string" }, "patch_url": { "type": "string" } } }, "closed_at": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "closed_by": { "$ref": "#/components/schemas/User" } } }, "File": { "type": "object", "properties": { "name": { "type": "string" }, "path": { "type": "string" }, "sha": { "type": "string" }, "size": { "type": "integer" }, "url": { "type": "string" }, "html_url": { "type": "string" }, "git_url": { "type": "string" }, "download_url": { "type": "string" }, "type": { "type": "string" }, "_links": { "type": "object", "properties": { "self": { "type": "string" }, "git": { "type": "string" }, "html": { "type": "string" } } } } }, "Directory": { "type": "object", "properties": { "name": { "type": "string" }, "path": { "type": "string" }, "sha": { "type": "string" }, "url": { "type": "string" }, "html_url": { "type": "string" }, "git_url": { "type": "string" }, "download_url": { "type": "string" }, "type": { "type": "string" }, "_links": { "type": "object", "properties": { "self": { "type": "string" }, "git": { "type": "string" }, "html": { "type": "string" } } } } } } } } }
Repo Noob Supreme GPT FAQs
More custom GPTs by Nicolas Sanford on the GPT Store
Assistant Noob Supreme
Expert in OpenAI API for assistant creation
40+
RPG Noob Supreme
Dungeon Master with immersive storytelling.
30+
Freqtrade Engineer
Generates Python code for freqtrade.
30+

Gift Noob Supreme
A helper for selecting perfect gifts
10+
Lingo Noob Supreme
I translate vernacular from any era to another, like Gen Z slang to Baby Boomer terms.
10+
Meme Noob Supreme
Humorous and playful meme coin creator.
8+
Splice Noob Supreme
Analyzes and condenses technical PDFs for efficient GPT searches.
4+
Cloud Noob Supreme
DevOps engineer for cloud solutions and architectures.
4+
Crypto Noob Supreme
Crypto paper trading analyst for fictional gains
4+
Best Alternative GPTs to Repo Noob Supreme on GPTs Store
Repo Analyzer
Evaluates code, PRs, release notes, and author comments in GitHub and GitLab repos.
1K+
Repo Reader
Analyzes and summarizes GitHub repos
1K+
Repo Ranger
Your go-to sheriff for web-based code insights and security checks.
100+
REPO MASTER
Expert in GitHub/Hugging Face repo lookup with enhanced GitHub API error handling
100+
Repo Explorer
Fetch GitHub repo information, using GitHub's REST API
80+
Repo Spider
I make code changes in your repository autonomously, at your request
70+
Repo Gith*b Code Information Question Answering
Answers queries on GitHub repo texts concisely
60+
Repo Inspector Assistant
Autonomously saves and manages code files as per user requests.
60+
Repo Explorer
A GitHub/GitLab/Git* Repository Explorer, providing detailed insights into repos.
60+
Repo Social Preview
Creates a social preview image & square logo for a GitHub repo.
40+
Repo Analyzer
Analyzes GitHub repos, explains structures, and integrates new features.
30+
Repo Builder
Creates and manages GitHub repos with Jupyter/Colab notebooks and images.
30+
Repo Master
GitHub Repo Analyzer and Downloader
30+
Repo Rabbis
Concise, humorous wisdom on repossession.
30+
Repo Explorer
I'm a friendly guide to GitHub repos, offering comparisons and tailored suggestions.
20+
Repo Copilot
Revolutionizing code analysis with intuitive, expert-level GitHub insights.
20+
Repo to TXT
Upload your zip file of a GitHub repo and I’ll convert it to a text file.
20+
Repo Guider
Create and Provides repos username details, profile bios, repositories, and checks availability.
10+
Repo Analyzer
I analyze GitHub repositories and answer questions about them.
10+
Repo Explorer
Focuses on Next.js 13, React 18, Node.js 18 repositories, offering targeted insights and questions.
9+