{"id":26512070,"url":"https://github.com/gonsix/code-agent","last_synced_at":"2026-03-01T09:31:58.165Z","repository":{"id":225279316,"uuid":"765534931","full_name":"Gonsix/Code-Agent","owner":"Gonsix","description":"🦾 🤖  ChatGPT-based  tool for support your software development","archived":false,"fork":false,"pushed_at":"2024-03-13T07:16:48.000Z","size":113,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T11:48:21.478Z","etag":null,"topics":["agent","ai","cli","devtools","git","langchain","openai","python","refactoring","tools"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/code-agent/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Gonsix.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-03-01T05:31:01.000Z","updated_at":"2024-03-08T07:23:21.000Z","dependencies_parsed_at":"2024-03-05T07:25:03.951Z","dependency_job_id":null,"html_url":"https://github.com/Gonsix/Code-Agent","commit_stats":null,"previous_names":["gonsix/code-agent"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gonsix%2FCode-Agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gonsix%2FCode-Agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gonsix%2FCode-Agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gonsix%2FCode-Agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gonsix","download_url":"https://codeload.github.com/Gonsix/Code-Agent/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244728231,"owners_count":20500023,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","ai","cli","devtools","git","langchain","openai","python","refactoring","tools"],"created_at":"2025-03-21T03:18:52.177Z","updated_at":"2026-03-01T09:31:58.115Z","avatar_url":"https://github.com/Gonsix.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Code-Agent 🚀\n## Use `codex` command to automate software development workflows. ✨\n\nHi👋  I'm Shingo Morimoto, an University student in Japan. I'm so interested in creating LLM application using LangChain. \n\nThe `codex` command,including subcommands: gen-commit, gen-readme, describe, suggest-comment, suggest-code, is a powerful tool to integrate your code with LLM power.✨\nCurrently, you can execute `codex gen-commit` to automate the creation of Git commit message from diff between HEAD commit and index.\n\n## 🌟 Getting Started\n\n\n\n### Install code-agent with pip 📁: \n\nTo use the codex command anywhere install it with pip:\n\n`pip install code-agent` or `pip install --break-system-packages code-agent ` if you are using newer pip. \n\n### Export OPENAI_API_KEY ⚙️:\n\nYou must exoport an `OPENAI_API_KEY` in your environment.\nAlso, you must have an access to the GPT-4 model to call OpenAI API.\n\n###  **Usage** 🚀:\n\nAmazing! Now you can use `codex` command anywhere!\n```\n$ codex --help\n\n Usage: codex [OPTIONS] COMMAND [ARGS]...\n\n╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ --install-completion          Install completion for the current shell.                                                                                    │\n│ --show-completion             Show completion for the current shell, to copy it or customize the installation.                                             │\n│ --help                        Show this message and exit.                                                                                                  │\n╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ describe            [Unimplemented feature]: Describe the source code in files -\u003e codex describe --help                                                    │\n│ gen-commit          Generate a commit message from Git diff between HEAD and index.                                                                        │\n│ gen-readme          [Unimplemented feature]: Generate Awesome README for your project in interactive way -\u003e codex gen_readme --help                        │\n│ say-goodbye                                                                                                                                                │\n│ say-hello                                                                                                                                                  │\n│ suggest-code        [Unimplemented feature]: Refactor and Suggest code for source code in specified files -\u003e codex suggest_code --help                     │\n│ suggest-comment     [Unimplemented feature]: Suggest comment for source code in specified files -\u003e codex suggest_comment --help                            │\n╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n```\n\n### Generation Result Example🤩:　\n`codex gen-commit`\n```\n    🌟 Implement Rust cat command with line numbering features\n\n    Changes(4):\n     🚩 Added command-line parsing   @ src/lib.rs\n         Integrated clap library for command-line argument parsing with custom Args struct, supporting file inputs and line numbering options.\n     🚩 Implemented file reading functionality   @ src/lib.rs\n         Developed file opening and reading capabilities, handling both standard input and file input streams.\n     🚩 Implemented line numbering features   @ src/lib.rs\n         Added functionality to number lines and number nonblank lines as per command-line arguments.\n     🚩 Added main application logic   @ src/main.rs\n         Created the main function to parse arguments and execute the application logic, with error handling and process exit on failure.\n```\n## Dive in! 🌊\n\nWith these steps, you're all set to revolutionize your Git commits. May your coding be effortless and your repositories vibrant! 💫\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgonsix%2Fcode-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgonsix%2Fcode-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgonsix%2Fcode-agent/lists"}