{"id":51093752,"url":"https://github.com/asphyx0r/git-starter-kit","last_synced_at":"2026-06-24T04:31:02.262Z","repository":{"id":365569964,"uuid":"1272603846","full_name":"asphyx0r/git-starter-kit","owner":"asphyx0r","description":"A minimal, reusable starter repository for Git and GitHub projects.","archived":false,"fork":false,"pushed_at":"2026-06-17T22:25:58.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-18T00:14:39.690Z","etag":null,"topics":["git"],"latest_commit_sha":null,"homepage":"","language":null,"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/asphyx0r.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-06-17T19:15:50.000Z","updated_at":"2026-06-17T22:25:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/asphyx0r/git-starter-kit","commit_stats":null,"previous_names":["asphyx0r/git-starter-kit"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/asphyx0r/git-starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asphyx0r%2Fgit-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asphyx0r%2Fgit-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asphyx0r%2Fgit-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asphyx0r%2Fgit-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asphyx0r","download_url":"https://codeload.github.com/asphyx0r/git-starter-kit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asphyx0r%2Fgit-starter-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34717625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["git"],"created_at":"2026-06-24T04:30:58.576Z","updated_at":"2026-06-24T04:31:02.250Z","avatar_url":"https://github.com/asphyx0r.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Starter Kit\n\nA minimal, reusable starter repository for Git and GitHub projects.\n\n## Features\n\n- Git and editor conventions for repository consistency.\n- Generic ignore rules for local files, secrets, caches, and build outputs.\n- Commit message guidance with a reusable Git commit template and strict\n  commitlint rules.\n- Lightweight spelling configuration for documentation and repository files.\n- Coding-agent instructions for cautious, verifiable repository changes.\n- VS Code workspace recommendations for consistent local editing.\n- Repository file inventory in `docs/repository-files.md`.\n- Reusable templates for README, changelog, contributing, code of conduct,\n  security, support, environment, Git, Codex, and release notes files.\n- GitHub community files for pull requests, issues, conduct, and support.\n- GitHub Actions workflow for lightweight Markdown, spelling, script, and\n  configuration audits.\n- Shared local and CI repository audit script for release readiness checks.\n- Release package automation for exports enriched with coding-agent rules.\n- Interactive Git initialization scripts for PowerShell and Bash.\n\n## Installation\n\nUse this repository as a starting point for a new project.\n\n```bash\ngit clone \u003crepository-url\u003e \u003cnew-project-name\u003e\ncd \u003cnew-project-name\u003e\n```\n\n## Usage\n\n```bash\ngit status\ngit config commit.template .gitmessage\n```\n\nCopy files from `templates/` when starting a new project and replace the\nplaceholder values with project-specific content.\n\nUse the GitHub templates in `.github/` to keep issues and pull requests\nreviewable with minimal process.\n\nRun the same audit suite locally that GitHub Actions runs:\n\n```bash\nbash scripts/repository-audit.sh\n```\n\nDo not create a release tag or GitHub release if this local audit fails. The\nscript bootstraps `codespell` 2.4.2 in a temporary Python target and\nrequires the same tools as CI, including `shellcheck`, `pwsh`, `python`,\n`node`, `git`, and `npx`.\n\nPublished releases can attach a generated ZIP package that overlays a resolved\n`agent-coding-rules` release and records the requested and resolved source in\n`_agent-rules-source.json`. See [Release Package](docs/release-package.md) for\nautomatic and manual usage.\n\nAutomatic release packages use the latest published full `agent-coding-rules`\nrelease. Manual runs accept `latest` or a SemVer agent-rules tag. When `latest`\nis used, the generated manifest records both the requested `latest` reference\nand the resolved SemVer tag.\n\nInitialize a target repository with an explicit confirmation prompt:\n\n```bash\nbash scripts/git-init.sh --path ../example-app --tag v1.0.0\n```\n\n```powershell\npowershell -NoProfile -File scripts\\git-init.ps1 --path ..\\example-app --tag v1.0.0\n```\n\nBoth scripts preview the files Git can commit before creating target `.git`\nmetadata. If commit confirmation is declined, the target directory is left\nuninitialized.\n\nUse `--remote \u003curl\u003e` when the initialized repository should add `origin` and\npush `main` with tags. When `--remote` is omitted, the scripts do not push.\n\nRun either script without arguments, or with `--help`, to show usage.\n\n## Contributing\n\nKeep changes minimal, generic, and directly useful for reusable Git/GitHub\nproject setup.\n\nPlease make sure to update `docs/repository-files.md` when repository files\nare added or changed.\n\n## Authors\n\n- Repository maintainers\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasphyx0r%2Fgit-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasphyx0r%2Fgit-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasphyx0r%2Fgit-starter-kit/lists"}