You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: migrate module path to go.klarlabs.de/statekit
Repository moved to the klarlabs-studio organization. Module is now
served via the go.klarlabs.de vanity import host.
BREAKING CHANGE: import path changed from github.com/felixgeelhaar/statekit
to go.klarlabs.de/statekit; old path remains available at existing tags via
GitHub redirect.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/feature_request.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,4 @@ Any alternative solutions or workarounds you've considered.
26
26
27
27
## Additional Context
28
28
29
-
Any other context, including whether this fits within our [scope constraints](https://github.com/felixgeelhaar/statekit/blob/main/CLAUDE.md#scope-constraints-v1).
29
+
Any other context, including whether this fits within our [scope constraints](https://github.com/klarlabs-studio/statekit/blob/main/CLAUDE.md#scope-constraints-v1).
**Stop modeling order, payment, and incident lifecycles with switch statements and ad-hoc FSMs.** Statekit is a typed statechart library for Go: hierarchical states, guards, actions, delayed and parallel transitions, with built-in visualization and lint.
@@ -89,7 +89,7 @@ These ship in v1.0 but reserve room to iterate within v1.x:
Statekit provides a native `viz` command to visualize state machines from Go source code or JSON.
344
344
345
-
Try the [Live Visualizer](https://felixgeelhaar.github.io/statekit/play) to paste your JSON and interact with it. The [landing page](https://felixgeelhaar.github.io/statekit/) has the project overview.
345
+
Try the [Live Visualizer](https://klarlabs-studio.github.io/statekit/play) to paste your JSON and interact with it. The [landing page](https://klarlabs-studio.github.io/statekit/) has the project overview.
346
346
347
347
```bash
348
348
# Interactive HTML simulation
@@ -361,7 +361,7 @@ It supports multiple output formats:
361
361
To export JSON programmatically:
362
362
363
363
```go
364
-
import"github.com/felixgeelhaar/statekit/export"
364
+
import"go.klarlabs.de/statekit/export"
365
365
366
366
exporter:= export.NewNativeExporter(machine)
367
367
jsonStr, _:= exporter.ExportJSONIndent("", "")
@@ -374,7 +374,7 @@ Statekit includes a built-in [Model Context Protocol](https://modelcontextprotoc
374
374
375
375
```bash
376
376
# Add to your MCP configuration
377
-
go install github.com/felixgeelhaar/statekit/cmd/statekit-mcp@latest
377
+
go install go.klarlabs.de/statekit/cmd/statekit-mcp@latest
378
378
```
379
379
380
380
```json
@@ -435,7 +435,7 @@ See the [examples](./examples) directory:
435
435
436
436
## API Reference
437
437
438
-
See the full [API documentation on pkg.go.dev](https://pkg.go.dev/github.com/felixgeelhaar/statekit).
438
+
See the full [API documentation on pkg.go.dev](https://pkg.go.dev/go.klarlabs.de/statekit).
0 commit comments