wrought 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 +5 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Wrought
2
+
3
+ **Engineering and operations control system by [FluxForge AI](https://github.com/fluxforgeai).**
4
+
5
+ Wrought is a full-lifecycle control system for AI-assisted engineering and production operations — standardizing feature delivery, incident response, RCA, and governance into repeatable workflows with durable artifacts.
6
+
7
+ *If it ain't Wrought, it's fraught.*
8
+
9
+ Full package coming soon.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // Wrought by FluxForge AI — Engineering and operations control system.
2
+ // Full package coming soon.
3
+ // "If it ain't Wrought, it's fraught."
4
+
5
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "wrought",
3
+ "version": "0.0.1",
4
+ "description": "Wrought by FluxForge AI — Engineering and operations control system. Full package coming soon.",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "ai",
8
+ "engineering",
9
+ "incident-management",
10
+ "mcp",
11
+ "control-system",
12
+ "fluxforge"
13
+ ],
14
+ "author": "FluxForge AI <hello@fluxforge.ai>",
15
+ "license": "MIT",
16
+ "homepage": "https://github.com/fluxforgeai/wrought",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/fluxforgeai/wrought.git"
20
+ }
21
+ }