create-cogenta 0.0.1 β 0.0.3
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 +39 -0
- package/package.json +9 -10
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# create-cogenta
|
|
2
|
+
|
|
3
|
+
Project scaffolder for **Cogenta**, an agentic CMS built on Node.js.
|
|
4
|
+
|
|
5
|
+
> π§ **Work in progress.** This package currently reserves the name.
|
|
6
|
+
> The installer ships with the first usable release.
|
|
7
|
+
|
|
8
|
+
## What is Cogenta?
|
|
9
|
+
|
|
10
|
+
Cogenta is a content management system whose multi-agent runtime is part of the
|
|
11
|
+
core, not a plugin. Agents watch the site's own dependencies and correlate
|
|
12
|
+
published CVEs, audit SEO on every publish, track Core Web Vitals, and draft
|
|
13
|
+
content β each with declared tool permissions, a memory, a budget, and an
|
|
14
|
+
explicit autonomy level, under human review and with an append-only audit log.
|
|
15
|
+
|
|
16
|
+
The CMS remains fully functional without any AI provider configured. Agents
|
|
17
|
+
accelerate; they are never a single point of failure.
|
|
18
|
+
|
|
19
|
+
## Planned highlights
|
|
20
|
+
|
|
21
|
+
- **Type-safe end to end** β content schema lives in TypeScript, versioned in git.
|
|
22
|
+
A theme referencing a removed field fails at build time, not in production.
|
|
23
|
+
- **Semantic blocks** β content stores meaning, never HTML or CSS classes, so
|
|
24
|
+
switching themes never breaks a page.
|
|
25
|
+
- **Three delivery targets** β static, Node SSR, or edge, from the same content
|
|
26
|
+
and the same theme.
|
|
27
|
+
- **No hard infrastructure dependencies** β Redis, Docker, S3 and persistent
|
|
28
|
+
workers are all optional, each with a degraded driver.
|
|
29
|
+
- **Isolated third-party plugins** β no filesystem, network or secret access
|
|
30
|
+
beyond the capabilities their manifest declares and the user approves.
|
|
31
|
+
|
|
32
|
+
## Status
|
|
33
|
+
|
|
34
|
+
Pre-alpha. Follow development at
|
|
35
|
+
[github.com/cogenta-cms/cogenta](https://github.com/cogenta-cms/cogenta).
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
[MPL-2.0](https://www.mozilla.org/en-US/MPL/2.0/)
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cogenta",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "CrΓ©ateur de projet pour Cogenta, le CMS agentique",
|
|
5
|
+
"license": "MPL-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/cogenta-cms/cogenta.git"
|
|
8
9
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"type": "commonjs"
|
|
13
|
-
}
|
|
10
|
+
"homepage": "https://github.com/cogenta-cms/cogenta",
|
|
11
|
+
"keywords": ["cms", "agentic", "ai", "headless", "astro", "nodejs"]
|
|
12
|
+
}
|