@odla-ai/blog 0.0.3 → 0.0.4

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cory Ondrejka
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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # @odla-ai/blog
2
2
 
3
+ > ⚠️ **Experimental — an agentic-coding experiment.** This package is built and
4
+ > operated by autonomous coding agents as an experiment in agentic loops. APIs
5
+ > change without notice and nothing here is production-hardened. **Use at your
6
+ > own risk.**
7
+
3
8
  Minimal-dependency, static-first blogging platform. A site is a directory of
4
9
  markdown plus one JSON config; `build()` emits a fully static site that works on
5
10
  GitHub Pages or Cloudflare. When [odla-db](https://github.com/odla-ai/odla-db) is
package/llms.txt CHANGED
@@ -1,5 +1,9 @@
1
1
  # @odla-ai/blog — agent reference (llms.txt)
2
2
 
3
+ > EXPERIMENTAL — an agentic-coding experiment. This package is built and operated
4
+ > by autonomous coding agents as an experiment in agentic loops. APIs change
5
+ > without notice and nothing here is production-hardened. Use at your own risk.
6
+
3
7
  This file ships in the npm package so an agent working in a *site* repo can
4
8
  operate the platform from `node_modules/@odla-ai/blog/llms.txt` alone. The
5
9
  source in `src/` is small and dependency-light — read it when in doubt; it is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odla-ai/blog",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Minimal-dependency, static-first blogging platform. Files in, site out; odla-db lights up interactivity when configured.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -21,7 +21,8 @@
21
21
  },
22
22
  "scripts": {
23
23
  "preview": "node scripts/preview.mjs",
24
- "test": "node --test --test-reporter=spec"
24
+ "test": "node --test --test-reporter=spec",
25
+ "coverage": "c8 --src=src --reporter=text --reporter=html node --test"
25
26
  },
26
27
  "dependencies": {
27
28
  "@odla-ai/ui": "^0.1.0",