Chronos Universal
Your daily history is training data for your future operating system. Universal agent skill that turns daily history into ranked recurring-workflow proposals for the sub-agents already installed in a user’s system.From the repository description
npx -y skills add myceldigital/Chronos-UniversalAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.5 KB, 787 tokens by cl100k_base, as published. Nobody here has run it
Chronos Universal Skill
Purpose
Chronos Universal reviews a user's normalized daily history and proposes the highest-leverage recurring agent workflows that could be assigned to already-installed sub-agents.
This skill is deliberately action-safe. It produces a ranked plan. It does not install, trigger, or execute jobs.
Operating Contract
Input:
- Daily history JSONL file.
- Installed agent capability registry.
- Optional dismissals JSONL file.
Output:
- Human-readable Markdown report.
- Machine-readable JSON plan.
Forbidden:
- Do not write to cron, launchd, systemd, task scheduler, GitHub Actions, or any other scheduler.
- Do not call sub-agents during the review pass.
- Do not create new sub-agents.
- Do not expand permissions.
- Do not make network calls.
- Do not read outside provided file paths.
- Do not perform external, financial, legal, clinical, employment, destructive, or permission-expanding actions.
Data Model
Daily history is a JSONL append-only log. Each line should be one event:
{"ts":"2026-05-04T09:15:00+01:00","source":"calendar","actor":"user","action":"meeting.completed","summary":"HSE protocol follow-up","payload":{"attendees":["[email protected]"],"topics":["protocol","timeline"],"commitments":["send updated protocol draft"]}}
Required event fields:
tssourceactoraction
Recommended event fields:
summarypayload.commitmentspayload.peoplepayload.projectpayload.tagspayload.duration_minutes
Agent Capability Manifest
Chronos is universal because it routes to capabilities, not hard-coded agent names.
Each installed agent should declare:
read: what data it can read.reason: what analysis it can perform.write: what internal outputs it can create.act: what external or consequential actions it can perform.constraints: risk limits and approval requirements.cron_compatibility: whether it can be scheduled.
Proposal Requirements
Each proposal must include:
- Stable ID.
- Title.
- Detected pattern.
- Evidence event references.
- Required capabilities.
- Candidate agents.
- Selected agent or capability gap.
- Trigger object.
- Risk class.
- Confidence.
- Estimated value.
- False-positive cost.
- Human approval requirement.
- Success criteria.
- Retirement conditions.
Trigger Types
Allowed trigger types:
cron: time-based schedule.event: event-based trigger.threshold: trigger when a condition crosses a boundary.manual: suggestion should not recur yet.
Cron is one trigger type, not the goal.
Risk Classes
L0: read-only summary.L1: draft or recommendation only.L2: internal write action.L3: external communication.L4: financial, legal, healthcare, employment, or regulated action.L5: destructive, irreversible, or permission-expanding action.
Default: proposals above L1 require explicit approval and should usually be emitted as review-only unless the user has defined a stronger policy.
Feedback Loop
Read dismissals.jsonl on every run. Do not repeatedly suggest ideas that have been dismissed. Down-rank patterns with repeated rejection. Treat installed or modified-and-installed proposals as positive feedback when available.
Style
Be concrete, sparse, and evidence-driven. Prefer three excellent proposals over ten noisy proposals.
A good proposal says:
This happened 4 times, here are the exact evidence lines, this installed agent can handle it, here is the trigger, here is the risk, here is how to retire it.
A bad proposal says:
You should automate email.
What ships with it: 19 files
50.1 KB alongside SKILL.md, 3 of them executable
docs/
- architecture.md1.1 KB
- capability-manifest.md1.4 KB
- risk-model.md1.1 KB
- triggers.md1.3 KB
examples/
- agent_registry.json3.1 KB
- dismissals.jsonl182 B
- history/2026-05-04.jsonl1.7 KB
schemas/
- agent-manifest.schema.json1.9 KB
- dismissal.schema.json591 B
- proposal.schema.json3.1 KB
scripts/
- __init__.pyruns41 B
- review_day.pyruns21.5 KB
tests/
- test_review_day.pyruns4.3 KB
- CHANGELOG.md449 B
- CONTRIBUTING.md985 B
- .gitignore164 B
- LICENSE1.0 KB
- README.md5.3 KB
- skill.yaml1000 B