forgesmith 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 +39 -0
- package/index.js +5 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# forgesmith
|
|
2
|
+
|
|
3
|
+
> Content & asset-generation engine for code intelligence.
|
|
4
|
+
>
|
|
5
|
+
> *The lens observes. The smith forges.*
|
|
6
|
+
|
|
7
|
+
**Status:** Reserved — first release follows after prism0x2A v0.3.x ships.
|
|
8
|
+
|
|
9
|
+
`forgesmith` is the engine library behind [`forge0x2B`](https://github.com/dadenjo/forge0x2B).
|
|
10
|
+
It transforms code intelligence from [`prismlens`](https://github.com/dadenjo/prismlens) /
|
|
11
|
+
[`prism0x2A`](https://github.com/dadenjo/prism0x2A) into communication-ready content:
|
|
12
|
+
release notes, blog posts, social copy, internal updates.
|
|
13
|
+
|
|
14
|
+
## Architecture
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
prismlens (observes code)
|
|
18
|
+
↓
|
|
19
|
+
prism0x2A (dashboard — persists .prism/ data)
|
|
20
|
+
↓
|
|
21
|
+
forgesmith (this — forges assets from data)
|
|
22
|
+
↓
|
|
23
|
+
forge0x2B (dashboard product for marketing/comms)
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Naming
|
|
27
|
+
|
|
28
|
+
- **prismlens** *observes* — splits code into spectral analysis
|
|
29
|
+
- **forgesmith** *produces* — takes the analysis and hammers out content
|
|
30
|
+
|
|
31
|
+
Engines in this family carry **craft-appropriate** suffixes, not a forced uniform suffix.
|
|
32
|
+
|
|
33
|
+
## Companion repos
|
|
34
|
+
|
|
35
|
+
| Repo | Role |
|
|
36
|
+
|---|---|
|
|
37
|
+
| [`prismlens`](https://github.com/dadenjo/prismlens) | Code-intelligence engine |
|
|
38
|
+
| [`prism0x2A`](https://github.com/dadenjo/prism0x2A) | Code-intelligence dashboard |
|
|
39
|
+
| [`forge0x2B`](https://github.com/dadenjo/forge0x2B) | Content/comms dashboard |
|
package/index.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// forgesmith — placeholder reservation. Real release follows prism0x2A v0.3.x.
|
|
2
|
+
// The lens observes. The smith forges.
|
|
3
|
+
// See: https://github.com/dadenjo/forgesmith
|
|
4
|
+
console.log("forgesmith — engine for forge0x2B. Reserved.");
|
|
5
|
+
console.log("The lens observes. The smith forges.");
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "forgesmith",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "forgesmith — content/asset-generation engine. The lens observes, the smith forges. Sister engine to prismlens. (Reserved package.)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"private": false,
|
|
8
|
+
"homepage": "https://github.com/dadenjo/forgesmith",
|
|
9
|
+
"keywords": ["code-intelligence", "content-generation", "release-notes", "marketing", "developer-tools"],
|
|
10
|
+
"author": "dadenjo"
|
|
11
|
+
}
|