tardie 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# tardie
|
|
2
|
+
|
|
3
|
+
Reserved for [tardigrade](https://github.com/clavia-labs/tardigrade), a durable agent harness where state is a pure function of an event log.
|
|
4
|
+
|
|
5
|
+
The package to install is [`@clavia/tardigrade`](https://www.npmjs.com/package/@clavia/tardigrade), which ships the framework, the HTTP server, the explorer, and the `tdg` command.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bunx @clavia/tardigrade dev
|
|
9
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tardie",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Reserved for tardigrade, a durable agent harness. See @clavia/tardigrade.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/clavia-labs/tardigrade#readme",
|
|
7
|
+
"repository": { "type": "git", "url": "git+https://github.com/clavia-labs/tardigrade.git" },
|
|
8
|
+
"keywords": ["tardigrade", "agent", "event-sourcing", "actor"],
|
|
9
|
+
"files": ["README.md"]
|
|
10
|
+
}
|