agent-first-data 0.2.3__tar.gz → 0.2.4__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.
- {agent_first_data-0.2.3/agent_first_data.egg-info → agent_first_data-0.2.4}/PKG-INFO +16 -1
- agent_first_data-0.2.3/PKG-INFO → agent_first_data-0.2.4/README.md +15 -9
- agent_first_data-0.2.3/README.md → agent_first_data-0.2.4/agent_first_data.egg-info/PKG-INFO +24 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/pyproject.toml +1 -1
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data/__init__.py +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data/afd_logging.py +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data/format.py +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data.egg-info/SOURCES.txt +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data.egg-info/dependency_links.txt +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data.egg-info/top_level.txt +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/setup.cfg +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/tests/test_afd_logging.py +0 -0
- {agent_first_data-0.2.3 → agent_first_data-0.2.4}/tests/test_format.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-first-data
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Agent-First Data (AFD) — suffix-driven output formatting and protocol templates for AI agents
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Project-URL: Repository, https://github.com/cmnspore/agent-first-data
|
|
@@ -440,6 +440,21 @@ All formats automatically redact `_secret` fields.
|
|
|
440
440
|
- **Currency**: `_msats`, `_sats`, `_btc`, `_usd_cents`, `_eur_cents`, `_jpy`, `_{code}_cents`
|
|
441
441
|
- **Other**: `_percent`, `_secret` (auto-redacted in all formats)
|
|
442
442
|
|
|
443
|
+
## Repository
|
|
444
|
+
|
|
445
|
+
This package is part of the [agent-first-data](https://github.com/cmnspore/agent-first-data) repository, which also contains:
|
|
446
|
+
|
|
447
|
+
- **`spec/`** — Full AFD specification with suffix definitions, protocol format rules, and cross-language test fixtures
|
|
448
|
+
- **`skills/`** — Claude Code skill for AI agents working with AFD conventions
|
|
449
|
+
|
|
450
|
+
To run tests, clone the full repository (tests use shared cross-language fixtures from `spec/fixtures/`):
|
|
451
|
+
|
|
452
|
+
```bash
|
|
453
|
+
git clone https://github.com/cmnspore/agent-first-data
|
|
454
|
+
cd agent-first-data/python
|
|
455
|
+
python -m pytest
|
|
456
|
+
```
|
|
457
|
+
|
|
443
458
|
## License
|
|
444
459
|
|
|
445
460
|
MIT
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: agent-first-data
|
|
3
|
-
Version: 0.2.3
|
|
4
|
-
Summary: Agent-First Data (AFD) — suffix-driven output formatting and protocol templates for AI agents
|
|
5
|
-
License-Expression: MIT
|
|
6
|
-
Project-URL: Repository, https://github.com/cmnspore/agent-first-data
|
|
7
|
-
Requires-Python: >=3.9
|
|
8
|
-
Description-Content-Type: text/markdown
|
|
9
|
-
|
|
10
1
|
# agent-first-data
|
|
11
2
|
|
|
12
3
|
**Agent-First Data (AFD)** — Suffix-driven output formatting and protocol templates for AI agents.
|
|
@@ -440,6 +431,21 @@ All formats automatically redact `_secret` fields.
|
|
|
440
431
|
- **Currency**: `_msats`, `_sats`, `_btc`, `_usd_cents`, `_eur_cents`, `_jpy`, `_{code}_cents`
|
|
441
432
|
- **Other**: `_percent`, `_secret` (auto-redacted in all formats)
|
|
442
433
|
|
|
434
|
+
## Repository
|
|
435
|
+
|
|
436
|
+
This package is part of the [agent-first-data](https://github.com/cmnspore/agent-first-data) repository, which also contains:
|
|
437
|
+
|
|
438
|
+
- **`spec/`** — Full AFD specification with suffix definitions, protocol format rules, and cross-language test fixtures
|
|
439
|
+
- **`skills/`** — Claude Code skill for AI agents working with AFD conventions
|
|
440
|
+
|
|
441
|
+
To run tests, clone the full repository (tests use shared cross-language fixtures from `spec/fixtures/`):
|
|
442
|
+
|
|
443
|
+
```bash
|
|
444
|
+
git clone https://github.com/cmnspore/agent-first-data
|
|
445
|
+
cd agent-first-data/python
|
|
446
|
+
python -m pytest
|
|
447
|
+
```
|
|
448
|
+
|
|
443
449
|
## License
|
|
444
450
|
|
|
445
451
|
MIT
|
agent_first_data-0.2.3/README.md → agent_first_data-0.2.4/agent_first_data.egg-info/PKG-INFO
RENAMED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-first-data
|
|
3
|
+
Version: 0.2.4
|
|
4
|
+
Summary: Agent-First Data (AFD) — suffix-driven output formatting and protocol templates for AI agents
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Repository, https://github.com/cmnspore/agent-first-data
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
1
10
|
# agent-first-data
|
|
2
11
|
|
|
3
12
|
**Agent-First Data (AFD)** — Suffix-driven output formatting and protocol templates for AI agents.
|
|
@@ -431,6 +440,21 @@ All formats automatically redact `_secret` fields.
|
|
|
431
440
|
- **Currency**: `_msats`, `_sats`, `_btc`, `_usd_cents`, `_eur_cents`, `_jpy`, `_{code}_cents`
|
|
432
441
|
- **Other**: `_percent`, `_secret` (auto-redacted in all formats)
|
|
433
442
|
|
|
443
|
+
## Repository
|
|
444
|
+
|
|
445
|
+
This package is part of the [agent-first-data](https://github.com/cmnspore/agent-first-data) repository, which also contains:
|
|
446
|
+
|
|
447
|
+
- **`spec/`** — Full AFD specification with suffix definitions, protocol format rules, and cross-language test fixtures
|
|
448
|
+
- **`skills/`** — Claude Code skill for AI agents working with AFD conventions
|
|
449
|
+
|
|
450
|
+
To run tests, clone the full repository (tests use shared cross-language fixtures from `spec/fixtures/`):
|
|
451
|
+
|
|
452
|
+
```bash
|
|
453
|
+
git clone https://github.com/cmnspore/agent-first-data
|
|
454
|
+
cd agent-first-data/python
|
|
455
|
+
python -m pytest
|
|
456
|
+
```
|
|
457
|
+
|
|
434
458
|
## License
|
|
435
459
|
|
|
436
460
|
MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_first_data-0.2.3 → agent_first_data-0.2.4}/agent_first_data.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|