oh-my-experience 0.0.0

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 +8 -0
  2. package/bin/ome.js +4 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # Oh My Experience
2
+
3
+ Oh My Experience turns AI coding sessions into a self-improving experience library, then recalls the right lessons at prompt time.
4
+
5
+ This package name is reserved for the upcoming open-source release.
6
+
7
+ Repository: https://github.com/rennzhang/oh-my-experience
8
+
package/bin/ome.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("Oh My Experience is reserved for an upcoming release.");
4
+ console.log("Repository: https://github.com/rennzhang/oh-my-experience");
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "oh-my-experience",
3
+ "version": "0.0.0",
4
+ "description": "Turn AI coding sessions into a self-improving experience library.",
5
+ "type": "module",
6
+ "bin": {
7
+ "ome": "bin/ome.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/rennzhang/oh-my-experience.git"
16
+ },
17
+ "author": "Zhang Ren <zhangren.aidev@gmail.com>",
18
+ "license": "MIT",
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org"
22
+ }
23
+ }