panoma 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 +18 -0
- package/index.js +6 -0
- package/package.json +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# panoma
|
|
2
|
+
|
|
3
|
+
> El App Store de tus propios proyectos: sabe qué construiste, con qué, dónde vive
|
|
4
|
+
> y qué agente de IA lo tocó por última vez.
|
|
5
|
+
|
|
6
|
+
`npx panoma scan` escaneará tu disco en local —sin subir código— y te devolverá el
|
|
7
|
+
catálogo completo de tu portafolio: pila tecnológica, salud, copias duplicadas,
|
|
8
|
+
credenciales commiteadas, disco regenerable y qué agente (Claude Code, Cursor, Codex…)
|
|
9
|
+
trabajó en cada proyecto.
|
|
10
|
+
|
|
11
|
+
**Próximamente.** Este paquete reserva el nombre mientras preparamos la publicación.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
> The App Store for your own projects: it knows what you built, with what stack,
|
|
16
|
+
> where it ships, and which AI agent touched it last. Coming soon.
|
|
17
|
+
|
|
18
|
+
https://panoma.dev
|
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Reserva del nombre mientras el CLI real llega a npm. El código vive en el
|
|
3
|
+
// monorepo privado; cuando se publique, este paquete pasará a ser el CLI.
|
|
4
|
+
console.log("panoma — El App Store de tus propios proyectos.");
|
|
5
|
+
console.log("Escanea tu disco, entiende tu pila y sabe qué agente tocó cada repo.");
|
|
6
|
+
console.log("Próximamente / coming soon → https://panoma.dev");
|
package/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "panoma",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "El App Store de tus propios proyectos — próximamente. The App Store for your own projects — coming soon.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"bin": {
|
|
7
|
+
"panoma": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://panoma.dev",
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18"
|
|
16
|
+
}
|
|
17
|
+
}
|