feed-protocol 0.2.0__tar.gz → 0.2.1__tar.gz
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.
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/PKG-INFO +10 -3
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/README.md +9 -2
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/__init__.py +3 -1
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/PKG-INFO +10 -3
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/pyproject.toml +1 -1
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/LICENSE +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/authoring.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/cli.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/constants.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/document.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/parser.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/render.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/tagger.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/validate.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed/verify.py +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/SOURCES.txt +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/dependency_links.txt +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/entry_points.txt +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/requires.txt +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/feed_protocol.egg-info/top_level.txt +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/setup.cfg +0 -0
- {feed_protocol-0.2.0 → feed_protocol-0.2.1}/tests/test_feed.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: feed-protocol
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: FEED — Format for Enforced Evidence-based Digestion. A self-bootstrapping document protocol that forces downstream LLMs to ground answers in cited evidence.
|
|
5
5
|
Author: Aniku Gul IEng, MIET, IMechE, VCAT II, CAA
|
|
6
6
|
License: MIT License
|
|
@@ -173,10 +173,17 @@ feed tag draft.md --grounding strict -o report.md # OPTIONAL: auto-tag via Clau
|
|
|
173
173
|
## Install
|
|
174
174
|
|
|
175
175
|
```bash
|
|
176
|
-
pip install -
|
|
177
|
-
|
|
176
|
+
pip install feed-protocol # library + CLI, zero dependencies
|
|
177
|
+
|
|
178
|
+
pip install -e . # or from a clone, for development
|
|
179
|
+
pip install "feed-protocol[tagger]" # adds the optional Claude auto-tagger
|
|
178
180
|
```
|
|
179
181
|
|
|
182
|
+
> **The library is optional.** FEED is a *format* — you can hand-author a FEED
|
|
183
|
+
> document in any text editor, and any AI reads it with no tooling. The library
|
|
184
|
+
> and CLI exist to make authoring and, above all, **verifying** convenient (e.g.
|
|
185
|
+
> `feed verify` in CI). You never need to install anything to *use* FEED.
|
|
186
|
+
|
|
180
187
|
The core — authoring kit, build, render, validate, verify — is **pure Python with
|
|
181
188
|
no dependencies and never calls an LLM**. Only the optional `tag` convenience
|
|
182
189
|
calls Claude directly; it defaults to Claude Opus 4.8.
|
|
@@ -128,10 +128,17 @@ feed tag draft.md --grounding strict -o report.md # OPTIONAL: auto-tag via Clau
|
|
|
128
128
|
## Install
|
|
129
129
|
|
|
130
130
|
```bash
|
|
131
|
-
pip install -
|
|
132
|
-
|
|
131
|
+
pip install feed-protocol # library + CLI, zero dependencies
|
|
132
|
+
|
|
133
|
+
pip install -e . # or from a clone, for development
|
|
134
|
+
pip install "feed-protocol[tagger]" # adds the optional Claude auto-tagger
|
|
133
135
|
```
|
|
134
136
|
|
|
137
|
+
> **The library is optional.** FEED is a *format* — you can hand-author a FEED
|
|
138
|
+
> document in any text editor, and any AI reads it with no tooling. The library
|
|
139
|
+
> and CLI exist to make authoring and, above all, **verifying** convenient (e.g.
|
|
140
|
+
> `feed verify` in CI). You never need to install anything to *use* FEED.
|
|
141
|
+
|
|
135
142
|
The core — authoring kit, build, render, validate, verify — is **pure Python with
|
|
136
143
|
no dependencies and never calls an LLM**. Only the optional `tag` convenience
|
|
137
144
|
calls Claude directly; it defaults to Claude Opus 4.8.
|
|
@@ -20,7 +20,9 @@ from .document import Claim, Evidence, FeedDocument
|
|
|
20
20
|
from .validate import ValidationReport, validate
|
|
21
21
|
from .verify import VerificationReport, verify
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
# Package version. The FEED *protocol* version is `VERSION` ("0.2") and is the
|
|
24
|
+
# one embedded in documents; this package version moves independently.
|
|
25
|
+
__version__ = "0.2.1"
|
|
24
26
|
|
|
25
27
|
__all__ = [
|
|
26
28
|
"FeedDocument",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: feed-protocol
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: FEED — Format for Enforced Evidence-based Digestion. A self-bootstrapping document protocol that forces downstream LLMs to ground answers in cited evidence.
|
|
5
5
|
Author: Aniku Gul IEng, MIET, IMechE, VCAT II, CAA
|
|
6
6
|
License: MIT License
|
|
@@ -173,10 +173,17 @@ feed tag draft.md --grounding strict -o report.md # OPTIONAL: auto-tag via Clau
|
|
|
173
173
|
## Install
|
|
174
174
|
|
|
175
175
|
```bash
|
|
176
|
-
pip install -
|
|
177
|
-
|
|
176
|
+
pip install feed-protocol # library + CLI, zero dependencies
|
|
177
|
+
|
|
178
|
+
pip install -e . # or from a clone, for development
|
|
179
|
+
pip install "feed-protocol[tagger]" # adds the optional Claude auto-tagger
|
|
178
180
|
```
|
|
179
181
|
|
|
182
|
+
> **The library is optional.** FEED is a *format* — you can hand-author a FEED
|
|
183
|
+
> document in any text editor, and any AI reads it with no tooling. The library
|
|
184
|
+
> and CLI exist to make authoring and, above all, **verifying** convenient (e.g.
|
|
185
|
+
> `feed verify` in CI). You never need to install anything to *use* FEED.
|
|
186
|
+
|
|
180
187
|
The core — authoring kit, build, render, validate, verify — is **pure Python with
|
|
181
188
|
no dependencies and never calls an LLM**. Only the optional `tag` convenience
|
|
182
189
|
calls Claude directly; it defaults to Claude Opus 4.8.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "feed-protocol"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "FEED — Format for Enforced Evidence-based Digestion. A self-bootstrapping document protocol that forces downstream LLMs to ground answers in cited evidence."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|