izhar-os 1.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.
- package/index.js +21 -0
- package/package.json +15 -0
package/index.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import chalk from "chalk";
|
|
4
|
+
|
|
5
|
+
console.log(chalk.green("Welcome to IzharOS"));
|
|
6
|
+
|
|
7
|
+
const command = process.argv[2];
|
|
8
|
+
|
|
9
|
+
switch (command) {
|
|
10
|
+
case "whoami":
|
|
11
|
+
console.log("Izhar Ahmad - AI SWE + Product");
|
|
12
|
+
break;
|
|
13
|
+
|
|
14
|
+
case "projects":
|
|
15
|
+
console.log("1. SpatialRoutingAI");
|
|
16
|
+
console.log("2. Perplexity Bot");
|
|
17
|
+
break;
|
|
18
|
+
|
|
19
|
+
default:
|
|
20
|
+
console.log(chalk.yellow("Try: izhar-os whoami | projects"));
|
|
21
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "izhar-os",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI portfolio of Izhar Ahmad",
|
|
5
|
+
"bin": {
|
|
6
|
+
"izhar-os": "./index.js"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"keywords": ["cli", "portfolio"],
|
|
10
|
+
"author": "Izhar Ahmad",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"chalk": "^5.6.2"
|
|
14
|
+
}
|
|
15
|
+
}
|