You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PROJEKT.md
+14-12Lines changed: 14 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ CompText CLI is an experimental terminal context client for building determinist
9
9
### Core Architecture
10
10
-**CLI Shell**: Command parser and handler for local, offline-first commands.
11
11
-**Context Harvester**: Logic to inspect and aggregate codebase context.
12
-
-**Deterministic Context Packs**: Unified payload stored in `.comptext/context_pack.latest.json` with keys sorted recursively and secrets redacted.
13
-
-**Provider Adapters**: Pluggable provider system (Dummy, Ollama, OpenAI-compatible, etc.) with explicit network/security boundaries.
12
+
-**Deterministic Context Packs**: Unified payload stored in `.comptext/context_pack.latest.json` with keys sorted recursively and sensitive values redacted.
13
+
-**Provider Adapters**: Pluggable provider system (Dummy, Ollama, OpenAI-compatible, etc.) with explicit network and policy boundaries.
14
14
-**Proposal/Apply Gate**: Workflows to review planned changes (`propose`) and apply them (`apply`) safely.
15
15
16
16
---
@@ -20,9 +20,10 @@ CompText CLI is an experimental terminal context client for building determinist
20
20
### Current State
21
21
```text
22
22
CURRENT_PHASE: 16
23
-
CURRENT_TASK: Agent State Contract Skeleton Review-Gate
24
-
LAST_GREEN_PHASE: 15
25
-
STATUS: review-pending
23
+
CURRENT_TASK: Agent State Contract Skeleton
24
+
LAST_GREEN_PHASE: 16
25
+
STATUS: complete
26
+
NEXT_ALLOWED_ACTION: Phase 17 planning on feature branch
26
27
```
27
28
28
29
### Autonomy Contract
@@ -32,17 +33,17 @@ STATUS: review-pending
32
33
-**Phase Transition**: May commit and push changes after all validation passes for a green phase, and await Review-Gate feedback before transitioning to any new phase.
33
34
34
35
### Forbidden Rules
35
-
-**No Private Keys / Secrets**: Forbidden to read or parse `.env`, `.env.*`, `.netrc`, `.git-credentials`, private keys (`*.key`, `*.pem`), or credentials.
36
-
-**No Secret Leakage**: Forbidden to print environment variables, dump secrets in stdout/stderr, or write them to logs/reports/artifacts.
37
-
-**No Untrusted Provider Action**: Forbidden to execute real cloud API provider calls during coding/validation phases (unless explicitly approved for live integration runs).
36
+
-**No Credential Material Access**: Forbidden to read or parse credential-bearing local files or authentication material.
37
+
-**No Sensitive Output Leakage**: Forbidden to print sensitive values in stdout/stderr or write them to logs/reports/artifacts.
38
+
-**No Untrusted Provider Action**: Forbidden to execute real cloud API provider calls during coding/validation phases unless explicitly approved for live integration runs.
38
39
-**No Destructive/Out-of-Scope Commands**: Forbidden to run shell operations outside the repo root.
39
-
-**No Overwriting Remote History**: Forbidden to run `git push -f` or forcepush unless explicitly approved.
40
+
-**No Overwriting Remote History**: Forbidden to run force-push operations unless explicitly approved.
40
41
-**No Unsupported Assurance Claims**: Forbidden to make unsupported assurance claims.
41
42
42
43
### Stop Conditions
43
44
The agent must halt execution and yield to the user when:
44
-
1.API credentials or auth keys are required to proceed.
45
-
2. Real cloud provider execution / live network calls are needed.
45
+
1.Authentication material is required to proceed.
46
+
2. Real cloud provider execution or live network calls are needed.
46
47
3. Git merge conflicts arise that cannot be resolved safely.
47
48
4. Validation fails and cannot be resolved with small, safe changes.
48
49
5. Codebase requirements or user requests are contradictory.
@@ -90,7 +91,8 @@ git push
90
91
|**Phase 13**| Skill Bundle Registry | Local skill bundle registry and starter skill templates |**COMPLETE**|
0 commit comments