whatwasit 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 +13 -0
  2. package/index.js +6 -0
  3. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # whatwasit
2
+
3
+ **This npm package reserves the name.** The CLI is Python — install it with:
4
+
5
+ ```bash
6
+ pip install whatwasit
7
+ # or
8
+ pipx install whatwasit
9
+ ```
10
+
11
+ [GitHub](https://github.com/ThorOdinson246/whatwasit) · [PyPI](https://pypi.org/project/whatwasit/)
12
+
13
+ Local-first semantic search for your shell history. No cloud, no API keys.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Placeholder — the real CLI is Python. See README.
2
+ module.exports = {
3
+ name: "whatwasit",
4
+ install: "pip install whatwasit",
5
+ homepage: "https://github.com/ThorOdinson246/whatwasit",
6
+ };
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "whatwasit",
3
+ "version": "0.0.0",
4
+ "description": "Shell history search by intent — install the CLI with pip: pip install whatwasit",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js",
8
+ "README.md"
9
+ ],
10
+ "keywords": [
11
+ "shell",
12
+ "history",
13
+ "semantic-search",
14
+ "cli",
15
+ "whatwasit"
16
+ ],
17
+ "author": "ThorOdinson246",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/ThorOdinson246/whatwasit.git"
22
+ },
23
+ "homepage": "https://github.com/ThorOdinson246/whatwasit#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/ThorOdinson246/whatwasit/issues"
26
+ }
27
+ }