fuigo 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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # fuigo
2
+
3
+ **Fuigo** — the agent execution engine behind [Murage](https://murage.ai).
4
+
5
+ Named for the 鞴 (*fuigo*), the bellows of a Japanese tatara ironworks:
6
+ the mechanism that supplies the force, worked under the direction of the
7
+ 村下 (*murage*), the furnace master.
8
+
9
+ This package reserves the name. Implementation is in active development.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // Fuigo — agent execution engine for Murage.
2
+ // Placeholder while the implementation is in development.
3
+ module.exports = { name: "fuigo", status: "in-development" };
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "fuigo",
3
+ "version": "0.0.1",
4
+ "description": "Fuigo \u2014 agent execution engine for Murage. Name reserved; implementation in development.",
5
+ "homepage": "https://murage.ai",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "agents",
9
+ "engine",
10
+ "orchestration",
11
+ "ai"
12
+ ],
13
+ "main": "index.js",
14
+ "files": [
15
+ "index.js",
16
+ "README.md"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ }
21
+ }