-
Notifications
You must be signed in to change notification settings - Fork 1
docs(readme): a work-in-progress warning that speaks optimizer #494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,17 @@ Your vaults, your fleet, your devices, your pulses — composed by conversation. | |
|
|
||
| </div> | ||
|
|
||
| > [!WARNING] | ||
| > **Pre-release — this studio is mid-optimization.** | ||
| > | ||
| > Amicode currently exists in a superposition of *polished research tool* and | ||
| > *construction site*; measurement collapses it into whichever state your day | ||
| > needed least. We apply our own discipline to the product: nothing promotes | ||
| > below F = 0.99, and this build is still climbing the curve — improving | ||
| > monotonically, mostly. Hit an unconverged edge and `Amicode: Report a Bug` | ||
| > files it with diagnostics attached; every report is a warm start for the | ||
| > next iteration. You're part of the loop now. | ||
|
Comment on lines
+25
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
rg -n -C 5 \
'Amicode: Report a Bug|report-a-bug|diagnostic(s)?' \
. \
--glob '!node_modules/**' \
--glob '!dist/**' || trueRepository: harmoniqs/amicode Length of output: 50376 🏁 Script executed: #!/bin/bash
set -euo pipefail
printf '%s\n' '--- command registration ---'
sed -n '84,99p' packages/extension/package.json
printf '%s\n' '--- bug-report skill contract ---'
sed -n '1,16p;24,55p;95,125p' packages/extension/skills/report-a-bug/SKILL.md
printf '%s\n' '--- orchestration and filing references ---'
rg -n -C 3 \
'REPORT_BUG_COMMAND|REPORT_A_BUG_SKILL|reportBug\(|bug-filed|diagnostics|issue created|comment posted' \
packages/extension/src/bug_report.ts \
packages/extension/skills/report-a-bug/SKILL.mdRepository: harmoniqs/amicode Length of output: 30807 Clarify the diagnostic behavior. 🤖 Prompt for AI Agents |
||
|
|
||
| --- | ||
|
|
||
| Amicode is an **open autonomous research studio** that lives in your editor — **down to the hardware**. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
State the promotion threshold explicitly as
F ≥ 0.99.Line 24 uses
F = 0.99, which reads as an equality rather than a promotion predicate. Use the explicit inequality required by the PR objective.Proposed wording
📝 Committable suggestion
🤖 Prompt for AI Agents