agents-live 0.0.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.
@@ -0,0 +1,75 @@
1
+ # to exclude Obsidian's settings (including plugin and hotkey configurations)
2
+ .obsidian/
3
+
4
+ # OR only to exclude workspace cache
5
+ .obsidian/workspaces.json
6
+ .obsidian/workspace
7
+
8
+ # Add below lines to exclude OS settings and caches
9
+ .trash/
10
+ .DS_Store
11
+ .obsidian/workspace
12
+
13
+
14
+ # Ignore Smart Connections folder because embeddings file is large and updated frequently
15
+ .smart-connections
16
+
17
+
18
+
19
+ # Ignore Smart Connections folder
20
+ .smart-connections
21
+
22
+ # Ignore Smart Environment folder (embeddings and generated data)
23
+ .smart-env
24
+
25
+ # Per-user Claude Code settings (not shared)
26
+ .claude/settings.local.json
27
+
28
+ # Python virtual environment
29
+ .venv/
30
+
31
+ # Python cache artifacts
32
+ __pycache__/
33
+ *.pyc
34
+
35
+ # Agent scratch / temp workspace (in-workspace temp so sandboxed writes work)
36
+ .tmp/
37
+
38
+ # Legacy To Do/ folder (retired static archive; kept ignored, not deleted)
39
+ To Do/
40
+
41
+ # Agent logs
42
+ Agents/logs/
43
+
44
+ # Agent data (generated runtime state; project config lives at the
45
+ # repo root in .triggered-tasks.toml)
46
+ Agents/data/*
47
+ !Agents/data/task-owners.json
48
+
49
+ # Ephemeral agent artifacts: tasks and handlers created and torn down within a
50
+ # single script invocation (e.g. smoketest). The `_` prefix marks them so
51
+ # git-sync doesn't race the creator and commit transient state. Permanent
52
+ # triggered tasks must NOT use a leading underscore.
53
+ Agents/_*.md
54
+ Agents/handlers/_*
55
+ # Exercise database and parse logs (generated by parse_tracking.py)
56
+ Exercise/data/
57
+
58
+ # Taskflow: corporate envelope (work-sensitive data)
59
+ Taskflow/work/
60
+
61
+ # Taskflow: personal envelope (gitignored during development)
62
+ Taskflow/personal/
63
+
64
+ # Taskflow: system data (config is tracked separately)
65
+ Taskflow/data/*
66
+ !Taskflow/data/config.json
67
+
68
+ # Dashboard (generated, contains PII)
69
+ DASHBOARD.md
70
+ Exercise/data/log/
71
+
72
+ # Auto-generated folder indexes
73
+ **/_index_.md
74
+ _index_.md
75
+ Taskflow/_tasks_.md
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: agents-live
3
+ Version: 0.0.1
4
+ Summary: Take your agents live: cron and file-watch dispatch, safety wrappers, and operations for standard *.agent.md CLI agents. Pre-release name stub; first real release in development.
5
+ Project-URL: Homepage, https://github.com/johnshew/triggered-tasks
6
+ Classifier: Development Status :: 2 - Pre-Alpha
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
10
+ # agents-live
11
+
12
+ **Take your agents live.**
13
+
14
+ agents-live attaches an automation layer to the standard `*.agent.md`
15
+ agent definitions used by VS Code, the GitHub Copilot CLI, and Claude
16
+ Code: cron schedules and file-watch triggers, deterministic pre/post
17
+ processors, schema-validated outputs, plan-mode-by-default safety, and
18
+ structured, cost-tracked run logs.
19
+
20
+ This 0.0.1 is an honest pre-release stub of a project in active
21
+ development (currently published as
22
+ [triggered-tasks](https://github.com/johnshew/triggered-tasks) while the
23
+ rename lands). The first functional release will appear under this name.
@@ -0,0 +1,14 @@
1
+ # agents-live
2
+
3
+ **Take your agents live.**
4
+
5
+ agents-live attaches an automation layer to the standard `*.agent.md`
6
+ agent definitions used by VS Code, the GitHub Copilot CLI, and Claude
7
+ Code: cron schedules and file-watch triggers, deterministic pre/post
8
+ processors, schema-validated outputs, plan-mode-by-default safety, and
9
+ structured, cost-tracked run logs.
10
+
11
+ This 0.0.1 is an honest pre-release stub of a project in active
12
+ development (currently published as
13
+ [triggered-tasks](https://github.com/johnshew/triggered-tasks) while the
14
+ rename lands). The first functional release will appear under this name.
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agents-live"
7
+ version = "0.0.1"
8
+ description = "Take your agents live: cron and file-watch dispatch, safety wrappers, and operations for standard *.agent.md CLI agents. Pre-release name stub; first real release in development."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ classifiers = ["Development Status :: 2 - Pre-Alpha"]
12
+
13
+ [project.urls]
14
+ Homepage = "https://github.com/johnshew/triggered-tasks"
15
+
16
+ [tool.hatch.build.targets.wheel]
17
+ packages = ["src/agents_live"]
@@ -0,0 +1,2 @@
1
+ """agents-live: take your agents live. Pre-release name stub; see README."""
2
+ __version__ = "0.0.1"