{"id":42035602,"url":"https://github.com/inngest/stepkit","last_synced_at":"2026-01-26T05:05:43.575Z","repository":{"id":326114782,"uuid":"1085775924","full_name":"inngest/stepkit","owner":"inngest","description":"StepKit is an open source SDK for building production ready durable workflows.","archived":false,"fork":false,"pushed_at":"2025-12-03T00:26:01.000Z","size":21317,"stargazers_count":65,"open_issues_count":7,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T19:28:31.215Z","etag":null,"topics":["durable-execution","durable-workflows","orchestration","typescript"],"latest_commit_sha":null,"homepage":"https://step.run","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/inngest.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-29T13:52:48.000Z","updated_at":"2026-01-01T03:31:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"ac9eaa32-0850-4409-b701-5bcd83002092","html_url":"https://github.com/inngest/stepkit","commit_stats":null,"previous_names":["inngest/stepkit"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/inngest/stepkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inngest%2Fstepkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inngest%2Fstepkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inngest%2Fstepkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inngest%2Fstepkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inngest","download_url":"https://codeload.github.com/inngest/stepkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inngest%2Fstepkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28767021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T03:54:34.369Z","status":"ssl_error","status_checked_at":"2026-01-26T03:54:33.031Z","response_time":59,"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":["durable-execution","durable-workflows","orchestration","typescript"],"created_at":"2026-01-26T05:05:42.847Z","updated_at":"2026-01-26T05:05:43.551Z","avatar_url":"https://github.com/inngest.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cpicture\u003e\n        \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./images/logo-dark.svg\"/\u003e\n        \u003cimg alt=\"StepKit logo\" src=\"./images/logo-light.svg\"/\u003e\n    \u003c/picture\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://step.run/docs\"\u003eDocumentation\u003c/a\u003e\n    \u003cspan\u003e\u0026nbsp;·\u0026nbsp;\u003c/span\u003e\n    \u003ca href=\"https://github.com/inngest/stepkit/discussions\"\u003eCommunity\u003c/a\u003e\n    \u003cspan\u003e\u0026nbsp;·\u0026nbsp;\u003c/span\u003e\n    \u003ca href=\"https://github.com/inngest/stepkit/discussions/categories/roadmap\"\u003eRoadmap / RFCs\u003c/a\u003e\n\u003c/p\u003e\n\u003cbr/\u003e\n\nStepKit lets you write durable workflows using the standard steps API and deploy to multiple drivers without refactoring.\n\nStepKit's steps bring:\n\n- 🦾 **Durability**: write unbreakable code that automatically retries without any state loss\n- 🕑 **Suspend and Resume**: write code that can pause for weeks without using compute\n- 📊 **Observability**: each workflow step becomes a live trace with detailed logs and metadata\n- 🪝 **Native webhooks and _\"Human in the Loop\"_**: make your workflow wait for an external event\n\nVisit the [step.run documentation](https://step.run/docs) for guides and examples.\n\n## Get started\n\n1. Install StepKit with your preferred driver\n\n_Inngest for local dev or production. In-Memory/FileSystem for testing_\n\n```bash\nnpm i @stepkit/inngest\n\n# npm i @stepkit/local\n```\n\n2. Write your first durable workflow\n\n```ts\nimport { z } from \"zod\";\nimport { Client } from \"@stepkit/inngest\";\n// import { FileSystemClient as Client } from \"@stepkit/local\";\n\nimport { emailTemplates, sendEmail } from \"./email-service\";\n\nexport const client = new Client({ id: \"readme-example\" });\n\nexport const onboardingWorkflow = client.workflow(\n  {\n    id: \"onboarding-workflow\",\n    inputSchema: z.object({\n      userId: z.string(),\n      email: z.email(),\n      userName: z.string(),\n    }),\n  },\n  async ({ input }, step) =\u003e {\n    const { userId, email, userName } = input.data;\n\n    // DAY 1: Welcome Email\n    await step.run(\"send-welcome-email\", async () =\u003e {\n      const template = emailTemplates.welcome(userName);\n      return await sendEmail(email, template);\n    });\n\n    // Wait 3 days\n    await step.sleep(\"wait-for-day-3\", 3600 * 24 * 3)\n\n    // DAY 3: Feedback Email\n    await step.run(\"send-feedback-request\", async () =\u003e {\n      const template = emailTemplates.feedbackRequest(userName, 7);\n      return await sendEmail(email, template);\n    });\n  }\n);\n```\n\n## Community\n\nWelcome to the StepKit community!\n\nWhether you’re here to ask questions, share ideas, or collaborate on code, you’ll find all the action is happening in [the GitHub Discussions](https://github.com/inngest/stepkit/).\n\nPlease take a moment to review our [Code of Conduct](./CODE_OF_CONDUCT.md) to understand our shared values and the standards of behavior that help keep our community safe and respectful for everyone.\n\n\n\n## Contributing\n\nIf you're new to contributing, you will find all the essential information (_architecture overview, etc_) in the [\"Welcome to the StepKit Community!\" discussion thread](https://github.com/inngest/stepkit/discussions/45) before getting started.\n\nWe encourage you to open issues and submit pull requests!\n\n\n## License\n\n[Apache 2.0](./LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finngest%2Fstepkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finngest%2Fstepkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finngest%2Fstepkit/lists"}