fervon 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/LICENSE +21 -0
- package/README.md +34 -0
- package/index.js +9 -0
- package/package.json +25 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jonathan Martín (Fervon)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<strong>FERVON</strong><br>
|
|
3
|
+
<em>forjado al rojo vivo</em>
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Fervon
|
|
9
|
+
|
|
10
|
+
Estudio de software **autónomo** de un solo desarrollador. Una forja donde flotas de agentes de IA escriben, revisan y mergean su propio código — **local-first**, sin pausa, producto tras producto.
|
|
11
|
+
|
|
12
|
+
> Del latín *fervere*: arder, hervir, bullir con fervor.
|
|
13
|
+
|
|
14
|
+
## Portfolio
|
|
15
|
+
|
|
16
|
+
| Proyecto | Qué es |
|
|
17
|
+
|---|---|
|
|
18
|
+
| **inferbench** | Benchmark de LLMs locales en tu propia GPU (tokens/s), con modo Serve + servidor MCP. |
|
|
19
|
+
| **ClaudeScope** | Dashboard local-first + búsqueda full-text de tus sesiones de Claude Code (0 deps, 0 red). |
|
|
20
|
+
| **launchpad** | Launcher local que descubre y levanta todos tus proyectos sin colisión de puertos. |
|
|
21
|
+
| **Lookspan** | Librería para desarrolladores publicada en npm + PyPI. |
|
|
22
|
+
| **Pregón** | Cross-poster centralizado (8+ canales) + tracking de tracción de tus lanzamientos. |
|
|
23
|
+
| **Veredicto** | Detector de *test-gaming* (trampas en los tests) en PRs hechos por agentes de IA. |
|
|
24
|
+
| **Regenta** | Plataforma de agentes de IA. |
|
|
25
|
+
| **Trading bot** | Bot de trading autónomo (cripto + acciones) con veto de Claude — la IA solo resta riesgo. |
|
|
26
|
+
| **Prompt Tycoon · Pato Patrick** | Juegos casuales del *game factory*. |
|
|
27
|
+
|
|
28
|
+
## Web
|
|
29
|
+
|
|
30
|
+
🔥 **https://fervon.dev**
|
|
31
|
+
|
|
32
|
+
## Licencia
|
|
33
|
+
|
|
34
|
+
MIT © Jonathan Martín
|
package/index.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Fervon — estudio de software autónomo. Forjado al rojo vivo.
|
|
2
|
+
// https://fervon.dev
|
|
3
|
+
module.exports = {
|
|
4
|
+
name: "Fervon",
|
|
5
|
+
tagline: "Forjado al rojo vivo",
|
|
6
|
+
root: "del latín 'fervere' — arder, hervir, bullir con fervor",
|
|
7
|
+
url: "https://fervon.dev",
|
|
8
|
+
github: "https://github.com/fervon",
|
|
9
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fervon",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Fervon — estudio de software autónomo. Forjado al rojo vivo.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://fervon.dev",
|
|
7
|
+
"author": "Jonathan Martín (JoniMartin27)",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"fervon",
|
|
10
|
+
"studio",
|
|
11
|
+
"indie",
|
|
12
|
+
"automation",
|
|
13
|
+
"ai-agents",
|
|
14
|
+
"local-first"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/fervon/fervon.git"
|
|
19
|
+
},
|
|
20
|
+
"main": "index.js",
|
|
21
|
+
"files": [
|
|
22
|
+
"index.js",
|
|
23
|
+
"README.md"
|
|
24
|
+
]
|
|
25
|
+
}
|