the-architect 1.0.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.
- the_architect-1.0.0/.gitignore +106 -0
- the_architect-1.0.0/CHANGELOG.md +231 -0
- the_architect-1.0.0/LICENSE +196 -0
- the_architect-1.0.0/NOTICE +101 -0
- the_architect-1.0.0/PKG-INFO +661 -0
- the_architect-1.0.0/README.md +620 -0
- the_architect-1.0.0/pyproject.toml +97 -0
- the_architect-1.0.0/the_architect/__init__.py +7 -0
- the_architect-1.0.0/the_architect/cli.py +4022 -0
- the_architect-1.0.0/the_architect/config.py +367 -0
- the_architect-1.0.0/the_architect/core/__init__.py +3 -0
- the_architect-1.0.0/the_architect/core/architect_md.py +635 -0
- the_architect-1.0.0/the_architect/core/circuit.py +1143 -0
- the_architect-1.0.0/the_architect/core/claude_code_provider.py +1091 -0
- the_architect-1.0.0/the_architect/core/context.py +284 -0
- the_architect-1.0.0/the_architect/core/dashboard.py +575 -0
- the_architect-1.0.0/the_architect/core/free_models.py +393 -0
- the_architect-1.0.0/the_architect/core/monitor_state.py +503 -0
- the_architect-1.0.0/the_architect/core/opencode_config.py +45 -0
- the_architect-1.0.0/the_architect/core/opencode_provider.py +1015 -0
- the_architect-1.0.0/the_architect/core/planner.py +1144 -0
- the_architect-1.0.0/the_architect/core/progress.py +520 -0
- the_architect-1.0.0/the_architect/core/provider.py +340 -0
- the_architect-1.0.0/the_architect/core/retrospective.py +455 -0
- the_architect-1.0.0/the_architect/core/runner.py +2698 -0
- the_architect-1.0.0/the_architect/core/structure.py +1571 -0
- the_architect-1.0.0/the_architect/core/success.py +382 -0
- the_architect-1.0.0/the_architect/core/tasks.py +221 -0
- the_architect-1.0.0/the_architect/core/tmux.py +1124 -0
- the_architect-1.0.0/the_architect/exceptions.py +16 -0
- the_architect-1.0.0/the_architect/resources/__init__.py +19 -0
- the_architect-1.0.0/the_architect/resources/opencode_template.json +37 -0
- the_architect-1.0.0/the_architect/resources/prompts/architect.md +327 -0
- the_architect-1.0.0/the_architect/resources/prompts/execution-protocol.md +261 -0
- the_architect-1.0.0/the_architect/resources/prompts/reviewer.md +162 -0
- the_architect-1.0.0/the_architect/version.py +96 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# The Architect — .gitignore
|
|
3
|
+
# =============================================================================
|
|
4
|
+
|
|
5
|
+
# ---------------------------------------------------------------------------
|
|
6
|
+
# Secrets — NEVER commit these
|
|
7
|
+
# ---------------------------------------------------------------------------
|
|
8
|
+
.env
|
|
9
|
+
.env.*
|
|
10
|
+
!.env.example
|
|
11
|
+
*.secret
|
|
12
|
+
*.pem
|
|
13
|
+
*.key
|
|
14
|
+
|
|
15
|
+
# ---------------------------------------------------------------------------
|
|
16
|
+
# Python
|
|
17
|
+
# ---------------------------------------------------------------------------
|
|
18
|
+
__pycache__/
|
|
19
|
+
*.py[cod]
|
|
20
|
+
*.so
|
|
21
|
+
*.egg
|
|
22
|
+
*.egg-info/
|
|
23
|
+
dist/
|
|
24
|
+
build/
|
|
25
|
+
.eggs/
|
|
26
|
+
MANIFEST
|
|
27
|
+
|
|
28
|
+
# ---------------------------------------------------------------------------
|
|
29
|
+
# Virtual environment
|
|
30
|
+
# ---------------------------------------------------------------------------
|
|
31
|
+
.venv/
|
|
32
|
+
venv/
|
|
33
|
+
env/
|
|
34
|
+
|
|
35
|
+
# ---------------------------------------------------------------------------
|
|
36
|
+
# Type checkers and linters
|
|
37
|
+
# ---------------------------------------------------------------------------
|
|
38
|
+
.mypy_cache/
|
|
39
|
+
.dmypy.json
|
|
40
|
+
.ruff_cache/
|
|
41
|
+
.pytype/
|
|
42
|
+
.pyre/
|
|
43
|
+
|
|
44
|
+
# ---------------------------------------------------------------------------
|
|
45
|
+
# Test and coverage
|
|
46
|
+
# ---------------------------------------------------------------------------
|
|
47
|
+
.pytest_cache/
|
|
48
|
+
.coverage
|
|
49
|
+
.coverage.*
|
|
50
|
+
htmlcov/
|
|
51
|
+
coverage.xml
|
|
52
|
+
.tox/
|
|
53
|
+
.nox/
|
|
54
|
+
tests/*.backup
|
|
55
|
+
tests/*.corrupted
|
|
56
|
+
/test_*.py
|
|
57
|
+
|
|
58
|
+
# ---------------------------------------------------------------------------
|
|
59
|
+
# The Architect runtime — generated when `architect` runs inside a project
|
|
60
|
+
# These are written into the user's project, not part of this repo.
|
|
61
|
+
# Leading slash anchors each pattern to the repo root so we do not accidentally
|
|
62
|
+
# exclude identically-named files that live inside the package (e.g. the
|
|
63
|
+
# lowercase resource file `the_architect/resources/prompts/architect.md`,
|
|
64
|
+
# which Git matches case-insensitively against the runtime `ARCHITECT.md`
|
|
65
|
+
# on macOS and Windows filesystems).
|
|
66
|
+
# ---------------------------------------------------------------------------
|
|
67
|
+
/.architect/
|
|
68
|
+
/architect.toml
|
|
69
|
+
/tasks/
|
|
70
|
+
/ARCHITECT.md
|
|
71
|
+
/PROGRESS.md
|
|
72
|
+
/SUCCESS.md
|
|
73
|
+
|
|
74
|
+
# ---------------------------------------------------------------------------
|
|
75
|
+
# Runtime logs
|
|
76
|
+
# ---------------------------------------------------------------------------
|
|
77
|
+
logs/
|
|
78
|
+
*.log
|
|
79
|
+
|
|
80
|
+
# ---------------------------------------------------------------------------
|
|
81
|
+
# OS
|
|
82
|
+
# ---------------------------------------------------------------------------
|
|
83
|
+
.DS_Store
|
|
84
|
+
Thumbs.db
|
|
85
|
+
|
|
86
|
+
# ---------------------------------------------------------------------------
|
|
87
|
+
# Editors
|
|
88
|
+
# ---------------------------------------------------------------------------
|
|
89
|
+
.vscode/
|
|
90
|
+
.idea/
|
|
91
|
+
*.code-workspace
|
|
92
|
+
*.swp
|
|
93
|
+
*.swo
|
|
94
|
+
|
|
95
|
+
# ---------------------------------------------------------------------------
|
|
96
|
+
# Build / distribution
|
|
97
|
+
# ---------------------------------------------------------------------------
|
|
98
|
+
*.spec
|
|
99
|
+
pip-log.txt
|
|
100
|
+
pip-wheel-metadata/
|
|
101
|
+
|
|
102
|
+
# ---------------------------------------------------------------------------
|
|
103
|
+
# Local developer scratch area — kept out of the public repo
|
|
104
|
+
# ---------------------------------------------------------------------------
|
|
105
|
+
/dev/*
|
|
106
|
+
.devcontainer
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to The Architect are documented here.
|
|
4
|
+
|
|
5
|
+
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
|
+
Versioning follows [Semantic Versioning](https://semver.org/) with a global build counter.
|
|
7
|
+
See [README — Versioning](README.md#versioning) for the full scheme.
|
|
8
|
+
Full rules in [`documentation/Best Practices.md`](documentation/Best%20Practices.md).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## [Unreleased]
|
|
13
|
+
|
|
14
|
+
<!--
|
|
15
|
+
Every completed task appends a bullet here and bumps __build__ in /version.py.
|
|
16
|
+
When cutting a release, rename [Unreleased] to the version and add a fresh
|
|
17
|
+
empty [Unreleased] above it. Use Keep a Changelog section headings:
|
|
18
|
+
Added / Changed / Deprecated / Removed / Fixed / Security.
|
|
19
|
+
-->
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- `.gitignore` no longer excludes `the_architect/resources/prompts/architect.md`
|
|
24
|
+
from version control. The previous rule `ARCHITECT.md` was intended to ignore
|
|
25
|
+
the runtime-generated project memory file but matched case-insensitively on
|
|
26
|
+
macOS/Windows filesystems, silently dropping the lowercase resource file
|
|
27
|
+
from the initial commit and breaking 60+ tests on CI (build 10002).
|
|
28
|
+
- Circuit-breaker replan tests (`test_replan_resets_circuit_state_on_success`,
|
|
29
|
+
`test_replan_discovers_new_task_files`) now patch `stream_provider` instead
|
|
30
|
+
of the removed `stream_opencode` symbol. The tests passed locally on dev
|
|
31
|
+
machines where `opencode` is installed (because the real call succeeded)
|
|
32
|
+
but failed on CI where it is not (build 10002).
|
|
33
|
+
- Retry-command tests accept both legacy wording ("not marked Done") and
|
|
34
|
+
current wording ("not in a terminal state") so the assertions survive the
|
|
35
|
+
terminal-status vocabulary change (build 10002).
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- PyPI Trusted Publishing job in CI — tagged releases (`v*`) auto-publish
|
|
40
|
+
to PyPI via OIDC, no API tokens required (build 10001).
|
|
41
|
+
- Python 3.13 to the CI test matrix and `pyproject.toml` classifiers
|
|
42
|
+
(build 10001).
|
|
43
|
+
- `SECURITY.md` with private vulnerability-disclosure policy (build 10001).
|
|
44
|
+
- `CODE_OF_CONDUCT.md` based on the Contributor Covenant 2.1
|
|
45
|
+
(build 10001).
|
|
46
|
+
- `.github/dependabot.yml` — weekly grouped updates for pip dependencies
|
|
47
|
+
and GitHub Actions, running through the existing CI pipeline before
|
|
48
|
+
any merge (build 10001).
|
|
49
|
+
- `-V` / `--version` flag on the root `architect` command — previously
|
|
50
|
+
only the `architect version` subcommand worked despite the flag being
|
|
51
|
+
documented (build 10001).
|
|
52
|
+
|
|
53
|
+
### Changed
|
|
54
|
+
|
|
55
|
+
- Rewrapped 25 long lines in `the_architect/cli.py` to comply with the
|
|
56
|
+
configured 100-character limit; CI now passes `ruff check` cleanly
|
|
57
|
+
(build 10001).
|
|
58
|
+
- Reformatted `tests/test_runner.py` to satisfy `ruff format --check`
|
|
59
|
+
(build 10001).
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## [1.0.0] (build 10000) — 2026-04-27
|
|
64
|
+
|
|
65
|
+
**Initial public release of The Architect** — an autonomous development
|
|
66
|
+
lifecycle layer that wraps OpenCode or Claude Code to turn any coding
|
|
67
|
+
agent into a fire-and-forget development partner.
|
|
68
|
+
|
|
69
|
+
### Providers
|
|
70
|
+
|
|
71
|
+
- OpenCode and Claude Code supported as AI CLI backends.
|
|
72
|
+
- Auto-detection of installed providers with interactive selection on first run.
|
|
73
|
+
- Provider preference persisted via `architect.toml` or the
|
|
74
|
+
`ARCHITECT_PROVIDER` environment variable.
|
|
75
|
+
- Pass-through for all provider API keys
|
|
76
|
+
(`OPENROUTER_API_KEY`, `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, etc.).
|
|
77
|
+
|
|
78
|
+
### Planning
|
|
79
|
+
|
|
80
|
+
- Goal decomposition into numbered task files (`T01`, `T02`, …) with a
|
|
81
|
+
shared `INSTRUCTIONS.md`.
|
|
82
|
+
- Three scope levels — `simple`, `standard`, `complex` — that shape
|
|
83
|
+
task granularity.
|
|
84
|
+
- Context injection from PRDs, specs, or any document via repeatable
|
|
85
|
+
`--context FILE_OR_DIR` or the `ARCHITECT_CONTEXT` env var.
|
|
86
|
+
- Goal auto-extraction from context files (scans for `## Goal`,
|
|
87
|
+
`## Objective`, `## Requirements`).
|
|
88
|
+
- Project structure auto-detection — repo type, languages, frameworks,
|
|
89
|
+
components, and dependency graph — captured in `ARCHITECT.md` for
|
|
90
|
+
every planning session.
|
|
91
|
+
- Previous-run archiving with timestamped directories so no history is lost.
|
|
92
|
+
- Planning resilience — 3 attempts with a 30-second pause on transient failures.
|
|
93
|
+
|
|
94
|
+
### Execution
|
|
95
|
+
|
|
96
|
+
- Live streaming of provider output to the terminal.
|
|
97
|
+
- Multi-signal completion detection combining promise tags,
|
|
98
|
+
`PROGRESS.md` state, exit codes, and output analysis.
|
|
99
|
+
- Anti-hallucination guard — a stuck task is never reported complete,
|
|
100
|
+
even if the agent claims success.
|
|
101
|
+
- Configurable pause between tasks.
|
|
102
|
+
- Authoritative post-attempt status reconciliation — the runner writes
|
|
103
|
+
`Done` or `Failed (N attempts)` into `PROGRESS.md` after every task
|
|
104
|
+
attempt so the next iteration skips resolved tasks. Prevents
|
|
105
|
+
re-execution of tasks the executor completed but forgot to mark.
|
|
106
|
+
|
|
107
|
+
### Task Lifecycle and Status Vocabulary
|
|
108
|
+
|
|
109
|
+
- Full terminal-status vocabulary in `PROGRESS.md`: `Pending`, `Done`,
|
|
110
|
+
`Failed`, `Blocked`. `Failed` is written by the runner when all
|
|
111
|
+
retries are exhausted; `Blocked` is reserved for resource-limit
|
|
112
|
+
persistence.
|
|
113
|
+
- `reconcile_task_status()`, `task_is_resolved()`, and `task_status()`
|
|
114
|
+
helpers in `the_architect.core.progress` — used by the runner,
|
|
115
|
+
planner, and CLI to honour the status vocabulary consistently.
|
|
116
|
+
- `ProgressState.failed_tasks`, `ProgressState.blocked_tasks`, and
|
|
117
|
+
`ProgressState.resolved_tasks` properties for downstream consumers
|
|
118
|
+
(dashboards, summaries) that need the full lifecycle picture.
|
|
119
|
+
- Planner only re-plans non-terminal tasks — failed work is never
|
|
120
|
+
silently re-queued as if it were fresh.
|
|
121
|
+
- `execution-protocol.md`, `reviewer.md`, and `architect.md` prompts
|
|
122
|
+
document the expanded status vocabulary so agents do not get confused
|
|
123
|
+
when the runner stamps statuses they did not write.
|
|
124
|
+
|
|
125
|
+
### Retry and Circuit Breaker
|
|
126
|
+
|
|
127
|
+
- Automatic retry with per-attempt model fallbacks
|
|
128
|
+
(`retry_model_2`, `retry_model_3`).
|
|
129
|
+
- Context carry — a summary of the previous attempt is injected into the
|
|
130
|
+
next retry's instruction.
|
|
131
|
+
- Circuit breaker with three independent failure detectors:
|
|
132
|
+
- no-progress detection (zero file writes across attempts),
|
|
133
|
+
- same-error fingerprinting (path- and line-number-normalised), and
|
|
134
|
+
- token-decline detection (model output shrinking across attempts).
|
|
135
|
+
- Targeted task replan when all fallback models are exhausted.
|
|
136
|
+
- Circuit state persisted to `.architect/circuit.json` — survives process restarts.
|
|
137
|
+
|
|
138
|
+
### Rate Limit Handling
|
|
139
|
+
|
|
140
|
+
- Cooldown detection for HTTP 429, 529, and provider-specific text patterns.
|
|
141
|
+
- Minimum 1-hour cooldown enforced regardless of the suggested retry-after.
|
|
142
|
+
- Cooldown waits do not consume retry slots.
|
|
143
|
+
- Free-tier model rotation (OpenCode + OpenRouter only) — swaps models
|
|
144
|
+
mid-stream without restarting the task.
|
|
145
|
+
|
|
146
|
+
### Retrospective Review
|
|
147
|
+
|
|
148
|
+
- Reviewer agent runs after execution completes.
|
|
149
|
+
- Reads the actual code, runs the test suite, and assesses completeness
|
|
150
|
+
and quality.
|
|
151
|
+
- Emits `R`-prefixed fix-up tasks when it finds issues.
|
|
152
|
+
- Configurable rounds — 1 by default, 2 in persistent mode.
|
|
153
|
+
|
|
154
|
+
### Persistent Memory
|
|
155
|
+
|
|
156
|
+
- `ARCHITECT.md` — project intelligence that accumulates decisions,
|
|
157
|
+
constraints, lessons, and best practices across sessions.
|
|
158
|
+
- `PROGRESS.md` — operational state between tasks with a strict
|
|
159
|
+
regex-parsed format.
|
|
160
|
+
- `SUCCESS.md` — full run summary written after every execution.
|
|
161
|
+
- Planning history auto-appended to `ARCHITECT.md` after each session.
|
|
162
|
+
|
|
163
|
+
### Modes
|
|
164
|
+
|
|
165
|
+
- Interactive mode with arrow-key screens for configuring runs,
|
|
166
|
+
resuming, and selecting providers.
|
|
167
|
+
- `--persistent` — up to 30 retries and 2 retrospective rounds.
|
|
168
|
+
- `--free` — free-tier OpenRouter rotation (OpenCode only).
|
|
169
|
+
- `--headless` — fully flag- and env-var-driven, suitable for CI.
|
|
170
|
+
- `--only` and `--from` for targeted task execution.
|
|
171
|
+
- `--standalone MODEL` — bypass provider config entirely.
|
|
172
|
+
- `--provider {auto,opencode,claude-code}` — select the AI CLI provider
|
|
173
|
+
from the command line; overrides `architect.toml` and
|
|
174
|
+
`ARCHITECT_PROVIDER`.
|
|
175
|
+
- `--project DIR` — operate on a directory other than CWD.
|
|
176
|
+
- `--no-monitor` — disable the tmux dashboard.
|
|
177
|
+
|
|
178
|
+
### CLI Commands
|
|
179
|
+
|
|
180
|
+
- `architect` — start a run (plan, resume, or all-done guard automatic).
|
|
181
|
+
- `architect --plan` — force planning mode.
|
|
182
|
+
- `architect list` — show all tasks and their status.
|
|
183
|
+
- `architect status` — show current run state.
|
|
184
|
+
- `architect retry --task T03` — reset and re-run a specific task.
|
|
185
|
+
- `architect skip --task T03` — mark a task done without running it.
|
|
186
|
+
- `architect reset` — reset `PROGRESS.md`.
|
|
187
|
+
- `architect cancel` — remove a stale lock file.
|
|
188
|
+
- `architect init` — initialise a project directory.
|
|
189
|
+
- `architect config` / `--set key=value` — view or edit configuration.
|
|
190
|
+
- `architect circuit` / `--reset T04` — view or reset circuit-breaker state.
|
|
191
|
+
- `architect logs` / `--task T01` — view execution logs.
|
|
192
|
+
- `architect monitor` — attach to the live tmux dashboard.
|
|
193
|
+
- `architect version`, `architect --version`, `architect -V` — print the
|
|
194
|
+
version string.
|
|
195
|
+
|
|
196
|
+
### tmux Dashboard
|
|
197
|
+
|
|
198
|
+
- Auto-launches a split-pane session when tmux is available.
|
|
199
|
+
- Live task progress, circuit-breaker state, token usage, and build
|
|
200
|
+
number in a single view.
|
|
201
|
+
- Atomic state-file writes so external readers never see a partial update.
|
|
202
|
+
- Offers to install tmux interactively if it's missing.
|
|
203
|
+
|
|
204
|
+
### Token Budget
|
|
205
|
+
|
|
206
|
+
- Optional hourly token-spend cap per run.
|
|
207
|
+
- Rolling 1-hour window with automatic reset.
|
|
208
|
+
|
|
209
|
+
### Build Tracking
|
|
210
|
+
|
|
211
|
+
- Global build counter increments with every agent operation and never resets.
|
|
212
|
+
- Dual-track versioning — SemVer for releases, build counter for cumulative effort.
|
|
213
|
+
- Major-version build-floor alignment (`v1` ≥ 10000, `v2` ≥ 20000, `v3` ≥ 30000).
|
|
214
|
+
Build numbers are always at least 5 digits.
|
|
215
|
+
|
|
216
|
+
### Technical Baseline
|
|
217
|
+
|
|
218
|
+
- Python 3.11+ required; uses the built-in `tomllib` (no `tomli` dependency).
|
|
219
|
+
- Zero AI SDK dependencies — every model call goes through the provider CLI.
|
|
220
|
+
- Strict static checks — `ruff check`, `ruff format --check`, and
|
|
221
|
+
`mypy --strict` all clean.
|
|
222
|
+
- PEP 639 compliant packaging — `license = "Apache-2.0"` SPDX expression
|
|
223
|
+
with `LICENSE` and `NOTICE` explicitly attached as `license-files`.
|
|
224
|
+
- Defensive `setup_logging(log_dir)` — rejects non-`Path`/`str` inputs
|
|
225
|
+
with a clear `TypeError` instead of silently writing log files with
|
|
226
|
+
mock-derived names.
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
*Build counter starts at 10000 for v1.0.0 and is always at least 5 digits. It never resets.*
|
|
231
|
+
*Each release records the exact build number at ship time.*
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship made available under
|
|
36
|
+
the License, as indicated by a copyright notice that is included in
|
|
37
|
+
or attached to the work (an example is provided in the Appendix below).
|
|
38
|
+
|
|
39
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
40
|
+
form, that is based on (or derived from) the Work and for which the
|
|
41
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
42
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
43
|
+
of this License, Derivative Works shall not include works that remain
|
|
44
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
45
|
+
the Work and Derivative Works thereof.
|
|
46
|
+
|
|
47
|
+
"Contribution" shall mean, as submitted to the Licensor for inclusion
|
|
48
|
+
in the Work by the copyright owner or by an individual or Legal Entity
|
|
49
|
+
authorized to submit on behalf of the copyright owner. For the purposes
|
|
50
|
+
of this definition, "submitted" means any form of electronic, verbal,
|
|
51
|
+
or written communication sent to the Licensor or its representatives,
|
|
52
|
+
including but not limited to communication on electronic mailing lists,
|
|
53
|
+
source code control systems, and issue tracking systems that are managed
|
|
54
|
+
by, or on behalf of, the Licensor for the purpose of discussing and
|
|
55
|
+
improving the Work, but excluding communication that is conspicuously
|
|
56
|
+
marked or designated in writing by the copyright owner as "Not a
|
|
57
|
+
Contribution."
|
|
58
|
+
|
|
59
|
+
"Contributor" shall mean Licensor and any Legal Entity on behalf of
|
|
60
|
+
whom a Contribution has been received by the Licensor and included
|
|
61
|
+
within the Work.
|
|
62
|
+
|
|
63
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
64
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
65
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
66
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
67
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
68
|
+
Work and such Derivative Works in Source or Object form.
|
|
69
|
+
|
|
70
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
71
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
72
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
73
|
+
(except as stated in this section) patent license to make, have made,
|
|
74
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
75
|
+
where such license applies only to those patent claims licensable
|
|
76
|
+
by such Contributor that are necessarily infringed by their
|
|
77
|
+
Contribution(s) alone or by the combination of their Contribution(s)
|
|
78
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
79
|
+
institute patent litigation against any entity (including a cross-claim
|
|
80
|
+
or counterclaim in a lawsuit) alleging that the Work or any
|
|
81
|
+
Contribution embodied within the Work constitutes direct or
|
|
82
|
+
contributory patent infringement, then any patent licenses granted
|
|
83
|
+
to You under this License for that Work shall terminate as of the
|
|
84
|
+
date such litigation is filed.
|
|
85
|
+
|
|
86
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
87
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
88
|
+
modifications, and in Source or Object form, provided that You
|
|
89
|
+
meet the following conditions:
|
|
90
|
+
|
|
91
|
+
(a) You must give any other recipients of the Work or Derivative
|
|
92
|
+
Works a copy of this License; and
|
|
93
|
+
|
|
94
|
+
(b) You must cause any modified files to carry prominent notices
|
|
95
|
+
stating that You changed the files; and
|
|
96
|
+
|
|
97
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
98
|
+
that You distribute, all copyright, patent, trademark, and
|
|
99
|
+
attribution notices from the Source form of the Work,
|
|
100
|
+
excluding those notices that do not pertain to any part of
|
|
101
|
+
the Derivative Works; and
|
|
102
|
+
|
|
103
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
104
|
+
distribution, You must include a readable copy of the
|
|
105
|
+
attribution notices contained within such NOTICE file, in
|
|
106
|
+
at least one of the following places: within a NOTICE text
|
|
107
|
+
file distributed as part of the Derivative Works; within
|
|
108
|
+
the Source form or documentation, if provided along with the
|
|
109
|
+
Derivative Works; or, within a display generated by the
|
|
110
|
+
Derivative Works, if and wherever such third-party notices
|
|
111
|
+
normally appear. The contents of the NOTICE file are for
|
|
112
|
+
informational purposes only and do not modify the License.
|
|
113
|
+
You may add Your own attribution notices within Derivative
|
|
114
|
+
Works that You distribute, alongside or in addition to the
|
|
115
|
+
NOTICE text from the Work, provided that such additional
|
|
116
|
+
attribution notices cannot be construed as modifying the License.
|
|
117
|
+
|
|
118
|
+
You may add Your own license statement for Your modifications and
|
|
119
|
+
may provide additional grant of rights to use, copy, modify, merge,
|
|
120
|
+
publish, distribute, sublicense, and/or sell copies of Your
|
|
121
|
+
modifications, or for such Derivative Works as a whole, under Your
|
|
122
|
+
terms, provided Your use, reproduction, and distribution of the Work
|
|
123
|
+
otherwise complies with the conditions stated in this License.
|
|
124
|
+
|
|
125
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
126
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
127
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
128
|
+
this License, without any additional terms or conditions.
|
|
129
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
130
|
+
the terms of any separate license agreement you may have executed
|
|
131
|
+
with Licensor regarding such Contributions.
|
|
132
|
+
|
|
133
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
134
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
135
|
+
except as required for reasonable and customary use in describing the
|
|
136
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
137
|
+
|
|
138
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
139
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
140
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
141
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
142
|
+
implied, including, without limitation, any warranties or conditions
|
|
143
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
144
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
145
|
+
appropriateness of using or reproducing the Work and assume any
|
|
146
|
+
risks associated with Your exercise of permissions under this License.
|
|
147
|
+
|
|
148
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
149
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
150
|
+
unless required by applicable law (such as deliberate and grossly
|
|
151
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
152
|
+
liable to You for damages, including any direct, indirect, special,
|
|
153
|
+
incidental, or exemplary damages of any character arising as a
|
|
154
|
+
result of this License or out of the use or inability to use the
|
|
155
|
+
Work (even if such Contributor has been advised of the possibility
|
|
156
|
+
of such damages).
|
|
157
|
+
|
|
158
|
+
9. Accepting Warranty or Liability. While redistributing the Work or
|
|
159
|
+
Derivative Works thereof, You may choose to offer, and charge a fee
|
|
160
|
+
for, acceptance of support, warranty, indemnity, or other liability
|
|
161
|
+
obligations and/or rights consistent with this License. However, in
|
|
162
|
+
accepting such obligations, You may offer such obligations only on
|
|
163
|
+
Your behalf and on Your sole responsibility, not on behalf of any
|
|
164
|
+
other Contributor, and only if You agree to indemnify, defend, and
|
|
165
|
+
hold each Contributor harmless for any liability incurred by, or
|
|
166
|
+
claims asserted against, such Contributor by reason of your accepting
|
|
167
|
+
any such warranty or additional liability.
|
|
168
|
+
|
|
169
|
+
END OF TERMS AND CONDITIONS
|
|
170
|
+
|
|
171
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
172
|
+
|
|
173
|
+
Copyright 2026 Netanel Eliav
|
|
174
|
+
|
|
175
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
176
|
+
you may not use this file except in compliance with the License.
|
|
177
|
+
You may obtain a copy of the License at:
|
|
178
|
+
|
|
179
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
180
|
+
|
|
181
|
+
Unless required by applicable law or agreed to in writing, software
|
|
182
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
183
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
184
|
+
implied. See the License for the specific language governing
|
|
185
|
+
permissions and limitations under the License.
|
|
186
|
+
|
|
187
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
188
|
+
|
|
189
|
+
The Architect — Original Author: Netanel Eliav <inetanel@me.com>
|
|
190
|
+
https://github.com/inetanel/the-architect
|
|
191
|
+
https://inetanel.com/projects/the-architect
|
|
192
|
+
|
|
193
|
+
See NOTICE file for full attribution requirements and
|
|
194
|
+
genesis fingerprint.
|
|
195
|
+
|
|
196
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
|
|
2
|
+
████████╗██╗ ██╗███████╗ █████╗ ██████╗ ██████╗██╗ ██╗
|
|
3
|
+
╚══██╔══╝██║ ██║██╔════╝ ██╔══██╗██╔══██╗██╔════╝██║ ██║
|
|
4
|
+
██║ ███████║█████╗ ███████║██████╔╝██║ ███████║
|
|
5
|
+
██║ ██╔══██║██╔══╝ ██╔══██║██╔══██╗██║ ██╔══██║
|
|
6
|
+
██║ ██║ ██║███████╗ ██║ ██║██║ ██║╚██████╗██║ ██║
|
|
7
|
+
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
|
|
8
|
+
|
|
9
|
+
An autonomous development lifecycle layer for
|
|
10
|
+
agentic AI coding tools.
|
|
11
|
+
─────────────────────────────────────────────────────
|
|
12
|
+
Original Author : Netanel Eliav
|
|
13
|
+
Email : inetanel@me.com
|
|
14
|
+
Website : https://inetanel.com/projects/the-architect
|
|
15
|
+
Repository : https://github.com/inetanel/the-architect
|
|
16
|
+
License : Apache License 2.0
|
|
17
|
+
Version : 1.0.0 (build 10000)
|
|
18
|
+
Created : 2026
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
22
|
+
|
|
23
|
+
THE ARCHITECT — NOTICE FILE
|
|
24
|
+
Copyright 2026 Netanel Eliav. All rights reserved.
|
|
25
|
+
|
|
26
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
27
|
+
|
|
28
|
+
ATTRIBUTION REQUIREMENT (Apache License 2.0, Section 4d)
|
|
29
|
+
|
|
30
|
+
This NOTICE file is legally required under Section 4(d) of the
|
|
31
|
+
Apache License, Version 2.0. Any distribution, fork, or derivative
|
|
32
|
+
of this software MUST:
|
|
33
|
+
|
|
34
|
+
1. Retain this NOTICE file in its entirety, without modification
|
|
35
|
+
2. Include a complete copy of the Apache License 2.0
|
|
36
|
+
3. Clearly state all modifications made to the original source
|
|
37
|
+
4. Not use "The Architect", the author's name, or the original
|
|
38
|
+
repository URL to endorse derivative products without explicit
|
|
39
|
+
written permission from Netanel Eliav
|
|
40
|
+
|
|
41
|
+
The canonical home of this project is:
|
|
42
|
+
https://github.com/inetanel/the-architect
|
|
43
|
+
https://inetanel.com/projects/the-architect
|
|
44
|
+
|
|
45
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
46
|
+
|
|
47
|
+
GENESIS FINGERPRINT
|
|
48
|
+
|
|
49
|
+
This block establishes the cryptographic origin of The Architect.
|
|
50
|
+
Inspired by the Bitcoin genesis block — a timestamped,
|
|
51
|
+
tamper-evident record of original authorship.
|
|
52
|
+
|
|
53
|
+
Project : The Architect
|
|
54
|
+
Author : Netanel Eliav <inetanel@me.com>
|
|
55
|
+
Origin : https://github.com/inetanel/the-architect
|
|
56
|
+
Version : 1.0.0 (build 10000)
|
|
57
|
+
Date : 2026
|
|
58
|
+
|
|
59
|
+
SHA256 (v1.0.0 source tarball):
|
|
60
|
+
[ Fill after first release:
|
|
61
|
+
sha256sum the-architect-1.0.0.tar.gz ]
|
|
62
|
+
|
|
63
|
+
SHA256 (v1.0.0 wheel):
|
|
64
|
+
[ Fill after first release:
|
|
65
|
+
sha256sum the_architect-1.0.0-py3-none-any.whl ]
|
|
66
|
+
|
|
67
|
+
To verify authenticity of any distribution, compare its SHA256
|
|
68
|
+
against the signed releases published at:
|
|
69
|
+
https://github.com/inetanel/the-architect/releases
|
|
70
|
+
|
|
71
|
+
"The Architect was built to give developers their time back.
|
|
72
|
+
Describe a goal. Walk away. Come back to results."
|
|
73
|
+
— Netanel Eliav, 2026
|
|
74
|
+
|
|
75
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
76
|
+
|
|
77
|
+
THIRD-PARTY COMPONENTS
|
|
78
|
+
|
|
79
|
+
This software uses the following open-source libraries:
|
|
80
|
+
|
|
81
|
+
questionary (MIT) https://github.com/tmbo/questionary
|
|
82
|
+
loguru (MIT) https://github.com/Delgan/loguru
|
|
83
|
+
rich (MIT) https://github.com/Textualize/rich
|
|
84
|
+
click (BSD-3) https://github.com/pallets/click
|
|
85
|
+
pydantic (MIT) https://github.com/pydantic/pydantic
|
|
86
|
+
httpx (BSD-3) https://github.com/encode/httpx
|
|
87
|
+
|
|
88
|
+
This software optionally integrates with (not bundled):
|
|
89
|
+
|
|
90
|
+
OpenCode https://opencode.ai (https://github.com/anomalyco/opencode)
|
|
91
|
+
Claude Code https://docs.anthropic.com/en/docs/claude-code
|
|
92
|
+
|
|
93
|
+
These are independent products with their own licenses and terms.
|
|
94
|
+
The Architect does not include, bundle, or redistribute them.
|
|
95
|
+
|
|
96
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
97
|
+
|
|
98
|
+
"Any sufficiently advanced automation is indistinguishable
|
|
99
|
+
from having a really good senior engineer on call 24/7."
|
|
100
|
+
|
|
101
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|