Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,35 +1,42 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- deckergui
|
| 5 |
-
- agent-ecosystem
|
| 6 |
-
pretty_name: Agent Heartbeat & Registry
|
| 7 |
-
configs:
|
| 8 |
-
- config_name: default
|
| 9 |
-
data_files:
|
| 10 |
-
- split: train
|
| 11 |
-
path: train.jsonl
|
| 12 |
---
|
| 13 |
|
| 14 |
-
# Agent
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
-
|
| 21 |
-
- **agent_id**: agent identifier
|
| 22 |
-
- **agent_name**: human-readable name
|
| 23 |
-
- **type**: agent type
|
| 24 |
-
- **last_seen**: ISO 8601
|
| 25 |
-
- **ttl_ms**: time-to-live ms
|
| 26 |
-
- **stale**: boolean
|
| 27 |
-
- **meta**: object with version/uptime/tasks
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
-
|
| 32 |
|
| 33 |
-
|
|
|
|
| 34 |
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
+
- dataset
|
| 4 |
+
- agents
|
| 5 |
+
- coordination
|
| 6 |
+
- heartbeat
|
| 7 |
+
- registry
|
| 8 |
- deckergui
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# Agent heartbeat and coordination data from DeckerGUI ecosystem. Contains agent registry snapshots, heartbeat intervals, staleness detection, and counter metrics.
|
| 12 |
|
| 13 |
+
## Dataset Details
|
| 14 |
|
| 15 |
+
- **Repository:** ctaxnagomi/deckergui-agent-coordination
|
| 16 |
+
- **License:** MIT
|
| 17 |
+
- **DeckerGUI Version:** v2.0.0
|
| 18 |
+
- **Created:** 2026-08-17
|
| 19 |
|
| 20 |
+
## Dataset Schema
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
See `metadata.json` for the full schema definition.
|
| 23 |
|
| 24 |
+
## Usage
|
| 25 |
|
| 26 |
+
```python
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
|
| 29 |
+
ds = load_dataset("ctaxnagomi/deckergui-agent-coordination")
|
| 30 |
+
print(ds)
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
```bibtex
|
| 36 |
+
@software{deckergui_2026,
|
| 37 |
+
title={DeckerGUI: Vision-Centric Agentic Operating Architecture},
|
| 38 |
+
author={Wan Mohd Azizi bin Wan Hosen},
|
| 39 |
+
year={2026},
|
| 40 |
+
url={https://huggingface.co/ctaxnagomi/deckergui-agent-coordination}
|
| 41 |
+
}
|
| 42 |
+
```
|