eyrie 0.1.0__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.
eyrie-0.1.0/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .venv/
4
+ .pytest_cache/
@@ -0,0 +1 @@
1
+ 3.13
eyrie-0.1.0/AGENTS.md ADDED
@@ -0,0 +1,35 @@
1
+ # AGENTS.md
2
+
3
+ Eyrie is a Python CLI tool that scaffolds and manages "eyrie" repos — coordination
4
+ workspaces with read-only symlinked sources, curated docs, and multi-agent-platform support.
5
+
6
+ ## Commands
7
+
8
+ ```sh
9
+ uv run eyrie init <name> # scaffold a new eyrie repo
10
+ uv run eyrie sync # materialize symlinks + install skills (WIP)
11
+ uv run pytest # run tests
12
+ uv run pytest tests/test_init.py::TestAgentsMd::test_contains_name # single test
13
+ ```
14
+
15
+ ## Architecture
16
+
17
+ - `src/eyrie/cli.py` — click CLI entry point (`main` group, `init` and `sync` commands)
18
+ - `src/eyrie/init.py` — scaffold generation logic (`create_scaffold`)
19
+ - `src/eyrie/templates.py` — all template content as string constants
20
+ - `tests/test_init.py` — tests use `click.testing.CliRunner` with the `main` group
21
+
22
+ ## Conventions
23
+
24
+ - The word "tower" must not appear in code or generated output. Use "eyrie" instead.
25
+ - Templates live as plain string constants in `templates.py`, not as separate files or Jinja2.
26
+ - `eyrie.toml` uses `[eyrie]` as the top-level table (not `[tower]`).
27
+ - Generated eyries use `links/` (read-only, git-ignored) for symlinks to sources.
28
+ - The design doc is at `docs/design.md`.
29
+
30
+ ## Build & dependencies
31
+
32
+ - Build backend: hatchling with `src/` layout
33
+ - Runtime: click (CLI)
34
+ - Dev: pytest
35
+ - Requires Python >=3.11 (uses stdlib `tomllib`)
eyrie-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Gabe Schwartz
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
eyrie-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: eyrie
3
+ Version: 0.1.0
4
+ Summary: A commanding place above your work — scaffold for planning across sources
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.11
8
+ Requires-Dist: click>=8.1
9
+ Description-Content-Type: text/markdown
10
+
11
+ # Eyrie
12
+
13
+ A commanding place above your work — scaffold for planning across sources.
14
+
15
+ Eyrie creates coordination repos where you (and your agents) can see across
16
+ multiple projects, notes, and sources without reaching down to change them.
17
+ Read-only `links/` point to the real sources; curated `docs/` build persistent
18
+ understanding over time.
19
+
20
+ ## Install
21
+
22
+ ```sh
23
+ uvx eyrie init my-workspace
24
+ ```
25
+
26
+ Or install permanently:
27
+
28
+ ```sh
29
+ uv tool install eyrie
30
+ ```
31
+
32
+ ## Usage
33
+
34
+ ### Create a new eyrie
35
+
36
+ ```sh
37
+ eyrie init my-workspace
38
+ ```
39
+
40
+ You'll be asked for a one-sentence description. Eyrie then generates the full
41
+ scaffold: `AGENTS.md`, `docs/`, `links/`, git repo with a pre-commit hook, and
42
+ agent permission rules for OpenCode and Claude Code.
43
+
44
+ ### Add sources
45
+
46
+ Edit `eyrie.toml`:
47
+
48
+ ```toml
49
+ [[sources]]
50
+ name = "resume"
51
+ path = "~/Projects/resume-cv"
52
+ type = "repo"
53
+
54
+ [[sources]]
55
+ name = "career-vault"
56
+ path = "~/Documents/ObsidianVaults/Career"
57
+ type = "folder"
58
+ skills = ["vercel-labs/agent-skills/obsidian-cli"]
59
+
60
+ [[sources]]
61
+ name = "jira"
62
+ type = "remote"
63
+ description = "Team Jira (team.atlassian.net)"
64
+ ```
65
+
66
+ ### Sync
67
+
68
+ ```sh
69
+ eyrie sync
70
+ ```
71
+
72
+ This materializes symlinks under `links/`, appends skeleton entries to
73
+ `docs/domain/repos.md` and `sources.md`, and installs any declared skills
74
+ via `npx skills add`.
75
+
76
+ ## How it works
77
+
78
+ ```
79
+ my-workspace/
80
+ ├── AGENTS.md ← agent instructions (generated once, then yours)
81
+ ├── CLAUDE.md ← points to AGENTS.md
82
+ ├── eyrie.toml ← sources, skills config
83
+ ├── docs/ ← persistent knowledge (domain, topics, workflow)
84
+ ├── links/ ← READ-ONLY symlinks to sources (git-ignored)
85
+ ├── output/ ← versioned deliverables
86
+ ├── scripts/ ← automation (uv run scripts/foo.py)
87
+ └── scratch/ ← ephemeral work (git-ignored)
88
+ ```
89
+
90
+ The core pattern: **plan here, execute there.** Use the eyrie to understand
91
+ cross-source work, then make changes in the individual source repos.
92
+
93
+ ## Requirements
94
+
95
+ - Python >= 3.11
96
+ - [uv](https://docs.astral.sh/uv/) (for running and installing)
97
+ - Node.js / npx (optional, for skill installation via `npx skills`)
98
+
99
+ ## License
100
+
101
+ MIT
eyrie-0.1.0/README.md ADDED
@@ -0,0 +1,91 @@
1
+ # Eyrie
2
+
3
+ A commanding place above your work — scaffold for planning across sources.
4
+
5
+ Eyrie creates coordination repos where you (and your agents) can see across
6
+ multiple projects, notes, and sources without reaching down to change them.
7
+ Read-only `links/` point to the real sources; curated `docs/` build persistent
8
+ understanding over time.
9
+
10
+ ## Install
11
+
12
+ ```sh
13
+ uvx eyrie init my-workspace
14
+ ```
15
+
16
+ Or install permanently:
17
+
18
+ ```sh
19
+ uv tool install eyrie
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ### Create a new eyrie
25
+
26
+ ```sh
27
+ eyrie init my-workspace
28
+ ```
29
+
30
+ You'll be asked for a one-sentence description. Eyrie then generates the full
31
+ scaffold: `AGENTS.md`, `docs/`, `links/`, git repo with a pre-commit hook, and
32
+ agent permission rules for OpenCode and Claude Code.
33
+
34
+ ### Add sources
35
+
36
+ Edit `eyrie.toml`:
37
+
38
+ ```toml
39
+ [[sources]]
40
+ name = "resume"
41
+ path = "~/Projects/resume-cv"
42
+ type = "repo"
43
+
44
+ [[sources]]
45
+ name = "career-vault"
46
+ path = "~/Documents/ObsidianVaults/Career"
47
+ type = "folder"
48
+ skills = ["vercel-labs/agent-skills/obsidian-cli"]
49
+
50
+ [[sources]]
51
+ name = "jira"
52
+ type = "remote"
53
+ description = "Team Jira (team.atlassian.net)"
54
+ ```
55
+
56
+ ### Sync
57
+
58
+ ```sh
59
+ eyrie sync
60
+ ```
61
+
62
+ This materializes symlinks under `links/`, appends skeleton entries to
63
+ `docs/domain/repos.md` and `sources.md`, and installs any declared skills
64
+ via `npx skills add`.
65
+
66
+ ## How it works
67
+
68
+ ```
69
+ my-workspace/
70
+ ├── AGENTS.md ← agent instructions (generated once, then yours)
71
+ ├── CLAUDE.md ← points to AGENTS.md
72
+ ├── eyrie.toml ← sources, skills config
73
+ ├── docs/ ← persistent knowledge (domain, topics, workflow)
74
+ ├── links/ ← READ-ONLY symlinks to sources (git-ignored)
75
+ ├── output/ ← versioned deliverables
76
+ ├── scripts/ ← automation (uv run scripts/foo.py)
77
+ └── scratch/ ← ephemeral work (git-ignored)
78
+ ```
79
+
80
+ The core pattern: **plan here, execute there.** Use the eyrie to understand
81
+ cross-source work, then make changes in the individual source repos.
82
+
83
+ ## Requirements
84
+
85
+ - Python >= 3.11
86
+ - [uv](https://docs.astral.sh/uv/) (for running and installing)
87
+ - Node.js / npx (optional, for skill installation via `npx skills`)
88
+
89
+ ## License
90
+
91
+ MIT