{"id":44729308,"url":"https://github.com/beeman/create-seed","last_synced_at":"2026-02-21T12:00:59.322Z","repository":{"id":338441374,"uuid":"1157870249","full_name":"beeman/create-seed","owner":"beeman","description":"🌱 Scaffold a new project from a template. Fast, portable, zero config.","archived":false,"fork":false,"pushed_at":"2026-02-19T08:46:14.000Z","size":92,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-19T13:57:24.399Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://npm.im/create-seed","language":"TypeScript","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/beeman.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-02-14T12:36:17.000Z","updated_at":"2026-02-19T08:45:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/beeman/create-seed","commit_stats":null,"previous_names":["beeman/create-seed"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/beeman/create-seed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeman%2Fcreate-seed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeman%2Fcreate-seed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeman%2Fcreate-seed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeman%2Fcreate-seed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beeman","download_url":"https://codeload.github.com/beeman/create-seed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeman%2Fcreate-seed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29648421,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T09:27:29.698Z","status":"ssl_error","status_checked_at":"2026-02-20T09:26:12.373Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-02-15T18:10:11.214Z","updated_at":"2026-02-20T11:01:01.724Z","avatar_url":"https://github.com/beeman.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create-seed 🌱\n\nScaffold a new project from a template. Fast, portable, zero config.\n\n## Usage\n\n```bash\n# With bun\nbun x create-seed@latest my-app -t bun-library\n\n# With npx\nnpx create-seed@latest my-app -t bun-library\n\n# With pnpx\npnpx create-seed@latest my-app -t bun-library\n```\n\n## Options\n\n```\nUsage: create-seed [options] [name]\n\nScaffold a new project from a template\n\nArguments:\n  name                         Project name\n\nOptions:\n  -V, --version                output the version number\n  -t, --template \u003ctemplate\u003e    Template to use (gh:owner/repo/path or local path)\n  --pm \u003cpm\u003e                    Package manager (npm|pnpm|bun, default: auto-detect)\n  --skip-git                   Skip git initialization (default: false)\n  --skip-install               Skip installing dependencies (default: false)\n  -d, --dry-run                Dry run (default: false)\n  -v, --verbose                Verbose output (default: false)\n  -h, --help                   display help for command\n```\n\n## Templates\n\nBrowse available templates at [beeman/templates](https://github.com/beeman/templates).\n\nYou can also use any GitHub repo, subdirectory, or local path as a template:\n\n```bash\n# Short name (from the default registry)\nbun x create-seed@latest my-app -t bun-library\n\n# GitHub repo\nbun x create-seed@latest my-app -t gh:owner/repo\n\n# GitHub subdirectory\nbun x create-seed@latest my-app -t gh:owner/repo/path\n\n# GitHub branch\nbun x create-seed@latest my-app -t gh:owner/repo#my-branch\n\n# GitHub subdirectory on a specific branch\nbun x create-seed@latest my-app -t gh:owner/repo/path#my-branch\n\n# Local path\nbun x create-seed@latest my-app -t ./my-local-template\n```\n\n## What it does\n\n1. **Clones the template** — downloads from GitHub (via [giget](https://github.com/unjs/giget)) or copies from a local path\n2. **Installs dependencies** — auto-detects your package manager (bun/npm/pnpm)\n3. **Initializes git** — `git init` + initial commit (skips gracefully if git is not installed or not configured)\n\n## Package manager detection\n\n`create-seed` auto-detects which package manager you're using based on how you ran it:\n\n| Command | Detected PM |\n|---------|-------------|\n| `bun x create-seed@latest` | bun |\n| `npx create-seed@latest` | npm |\n| `pnpx create-seed@latest` | pnpm |\n\nOverride with `--pm`:\n\n```bash\nbun x create-seed@latest my-app -t gh:owner/repo --pm bun\n```\n\n## Analytics\n\nAnonymous usage statistics are collected via [Umami](https://umami.is) to help improve the tool. No personally identifiable information is collected.\n\nData collected: OS, architecture, Node version, package manager, template name, and success/failure status.\n\nTo opt out, set the `DO_NOT_TRACK` environment variable:\n\n```bash\nDO_NOT_TRACK=1 bun x create-seed@latest my-app -t gh:owner/repo\n```\n\nAnalytics are also automatically disabled in CI environments.\n\n## Development\n\n```bash\nbun install\nbun run build\nbun run test\nbun run lint\n```\n\n## License\n\nMIT – see [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeman%2Fcreate-seed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeeman%2Fcreate-seed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeman%2Fcreate-seed/lists"}