ennoia 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 +6 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Ennoia
2
+
3
+ > AI knows what you have in mind.
4
+
5
+ This is a placeholder. The actual Ennoia package is under active development.
6
+
7
+ **Etymology**: From Greek ennoia — "inner concept" or "what one has in mind".
8
+
9
+ Follow development at: https://github.com/kiwiai777/ennoia
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Ennoia - placeholder package
2
+ // Real implementation coming soon.
3
+ // See https://github.com/kiwiai777/ennoia
4
+ module.exports = {
5
+ message: 'Ennoia is under development. Visit github.com/<your-username>/ennoia for updates.'
6
+ };
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "ennoia",
3
+ "version": "0.0.1",
4
+ "description": "Ennoia - placeholder. Real package coming soon. Visit github.com/kiwiai777/ennoia for updates.",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "keywords": ["ennoia", "ai", "user-model", "placeholder"],
8
+ "author": "kiwi <kiwi.w.ai@gmail.com>",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/kiwiai777/ennoia"
12
+ }
13
+ }