{"id":48380757,"url":"https://github.com/guechtoulianis/forge","last_synced_at":"2026-04-05T20:01:15.556Z","repository":{"id":349057236,"uuid":"1187245422","full_name":"GuechtouliAnis/forge","owner":"GuechtouliAnis","description":"Personal dev CLI — clone, scaffold, and set up projects your way.","archived":false,"fork":false,"pushed_at":"2026-04-04T00:47:10.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T02:32:01.883Z","etag":null,"topics":["cli","developer-tools","go","golang","open-source","python-venv","scaffold"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GuechtouliAnis.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-20T14:03:03.000Z","updated_at":"2026-04-01T22:45:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/GuechtouliAnis/forge","commit_stats":null,"previous_names":["guechtoulianis/forge"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/GuechtouliAnis/forge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuechtouliAnis%2Fforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuechtouliAnis%2Fforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuechtouliAnis%2Fforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuechtouliAnis%2Fforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GuechtouliAnis","download_url":"https://codeload.github.com/GuechtouliAnis/forge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GuechtouliAnis%2Fforge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31448216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cli","developer-tools","go","golang","open-source","python-venv","scaffold"],"created_at":"2026-04-05T20:01:14.752Z","updated_at":"2026-04-05T20:01:15.546Z","avatar_url":"https://github.com/GuechtouliAnis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Forge 🔨\n*In the heat of creation, Forge shapes raw repositories into living projects — one command, one strike at a time.*\n\nPersonal dev CLI — clone, scaffold, and set up projects your way.\n\n\u003e Forge is designed for Linux and macOS. Windows is not currently supported.\n\n## Commands\n\n### `forge clone`\n\nClones a repository and sets up the development environment automatically.\n```bash\nforge clone --py git@github.com:user/repo.git   # Python project\nforge clone --go git@github.com:user/repo.git   # Go project\nforge clone git@github.com:user/repo.git        # just clone, no setup\n```\n\n### `forge gitignore`\n\nGenerates a `.gitignore` for the current project.\n```bash\nforge gitignore        # generic\nforge gitignore --py   # Python project\nforge gitignore --go   # Go project\n```\n\n### `forge new`\n\nScaffolds a fresh project locally without git.\n```bash\nforge new --py myproject    # Python project\nforge new --go myproject    # Go project\nforge new myproject         # generic, no language setup\n```\n\n### `forge init`\n\nSame as `new` but initializes a git repository and creates an initial commit.\n```bash\nforge init --py myproject   # Python project with git\nforge init --go myproject   # Go project with git\nforge init myproject        # generic with git\n```\n\n### `forge env`\nGenerates a `.env.example` from the current `.env` file, stripping values and preserving comments.\n```bash\nforge env        # generate .env.example, prompt if it already exists\nforge env -y     # overwrite existing .env.example without prompt\n```\n\n## Flags\n\n- `--py` — creates a venv, upgrades pip, installs from `pyproject.toml` or `requirements.txt` if present\n- `--go` — runs `go mod init` if no `go.mod` exists, then `go mod tidy`\n- `-u / --username` — GitHub username for Go module path (falls back to git config if not provided)\n\n**Python setup behavior:**\n- `pyproject.toml` found → `pip install -e .`\n- `requirements.txt` found → `pip install -r requirements.txt`\n- neither found → venv created and ready, no deps installed\n\n## Installation\n```bash\ngit clone git@github.com:GuechtouliAnis/forge.git\ncd forge\ngo mod tidy\ngo build -o forge .\nsudo mv forge /usr/local/bin/\n```\n\n## Author\n\n[Guechtouli Anis](https://github.com/GuechtouliAnis)\n\n\u003cp align=\"center\"\u003e\u003csub\u003eWhere data sparks the light of revelation. ✨\u003c/sub\u003e\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguechtoulianis%2Fforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguechtoulianis%2Fforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguechtoulianis%2Fforge/lists"}