Skip to content

Commit f45363b

Browse files
authored
Merge pull request #94 from keepsimpleio/feat/ai-atlas
Feat/ai atlas
2 parents 195e4e3 + 8027b13 commit f45363b

4 files changed

Lines changed: 38 additions & 22 deletions

File tree

public/ai-atlas/data-ru.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@
367367
},
368368
{
369369
"k": "init audit",
370-
"v": "Авто-компактификация. Пульсирует при заполнении контекста; суммирует прогресс и освежает CLAUDE.md / AGENTS.md."
370+
"v": "Каждый день обходит CLAUDE.md всех агентов. Находит самые жирные точки оптимизации, будит нужного агента и предлагает ему патч."
371371
},
372372
{
373373
"k": "access table",
@@ -381,10 +381,6 @@
381381
"k": "byo auth",
382382
"v": "Слоты для своих OAuth-токенов (Anthropic, OpenAI Codex). Агенты на разных биллингах в одном окне."
383383
},
384-
{
385-
"k": "self-mod",
386-
"v": "Если агент редактирует сам терминал, он получает [CRITICAL] предупреждение в системный промпт — рестарт убьёт его же сессию."
387-
},
388384
{
389385
"k": "send-to",
390386
"v": "Перешли полный ответ одного агента другому с новой инструкцией — один клик, payload едет с письмом."
@@ -436,7 +432,7 @@
436432
"cls": "blue",
437433
"ref": "lead-elea"
438434
},
439-
{ "k": "владеет", "v": "whisper · echo · choir" }
435+
{ "k": "владеет", "v": "[ЗАСЕКРЕЧЕНО] · 3 сущности" }
440436
]
441437
},
442438
"agentsforge": {

public/ai-atlas/data.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@
367367
},
368368
{
369369
"k": "init audit",
370-
"v": "Auto-compaction button. Pulses when context fills; summarizes progress and refreshes CLAUDE.md / AGENTS.md."
370+
"v": "Daily sweep across every agent's CLAUDE.md. Spots the highest-leverage fixes, wakes the right agent, and proposes the patch."
371371
},
372372
{
373373
"k": "access table",
@@ -381,10 +381,6 @@
381381
"k": "byo auth",
382382
"v": "Slots for extra OAuth tokens (Anthropic, OpenAI Codex). Agents on different billings in one window."
383383
},
384-
{
385-
"k": "self-mod",
386-
"v": "If an agent edits the harness itself, it gets a [CRITICAL] system-prompt warning before a restart kills its own session."
387-
},
388384
{
389385
"k": "send-to",
390386
"v": "Forward one agent's full response to another with a fresh instruction — one click, payload included."
@@ -436,7 +432,7 @@
436432
"cls": "blue",
437433
"ref": "lead-elea"
438434
},
439-
{ "k": "owns", "v": "whisper · echo · choir" }
435+
{ "k": "owns", "v": "[CLASSIFIED] · 3 entities" }
440436
]
441437
},
442438
"agentsforge": {

src/pages/ai-atlas.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,12 +1788,6 @@ function AiAtlasApp() {
17881788
<span className="meta-unit">{t.metricLoc}</span>
17891789
</>
17901790
)}
1791-
{metrics.services != null && (
1792-
<>
1793-
<b>{metrics.services}</b>
1794-
<span className="meta-unit">{t.metricServices}</span>
1795-
</>
1796-
)}
17971791
</span>
17981792
</>
17991793
)}

src/styles/ai-atlas.css

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -944,9 +944,18 @@ html.scroll-style-atlas::-webkit-scrollbar-thumb:hover {
944944
Mobile / narrow viewports — stack rail below canvas, wrap
945945
header, drop fixed heights. Diagram still readable but small.
946946
============================================================ */
947+
/* Clear the global KeepSimple navbar (position: fixed; height: 55px
948+
at <=1140px). Without this top padding, the doc-header metrics row
949+
slips behind the navbar on tablet & phone. */
950+
@media (max-width: 1140px) {
951+
.sheet {
952+
padding-top: 71px;
953+
}
954+
}
955+
947956
@media (max-width: 900px) {
948957
.sheet {
949-
padding: 16px 14px 20px;
958+
padding: 71px 14px 20px;
950959
}
951960
.doc-header {
952961
flex-wrap: wrap;
@@ -975,17 +984,38 @@ html.scroll-style-atlas::-webkit-scrollbar-thumb:hover {
975984
.meta-tail {
976985
display: none;
977986
}
987+
/* Mobile reorder: legend → view toggle → canvas → dossier. The rail
988+
dissolves (display: contents) so its children participate directly
989+
in the workspace flex order. */
978990
.workspace--v4 {
979-
grid-template-columns: 1fr;
991+
display: flex;
992+
flex-direction: column;
980993
gap: 18px;
981994
}
995+
.view-stage {
996+
order: 3;
997+
width: 100%;
998+
align-self: stretch;
999+
}
1000+
.canvas--orbital {
1001+
width: 100%;
1002+
padding: 14px;
1003+
}
9821004
.rail {
983-
position: static;
984-
top: auto;
1005+
display: contents;
9851006
}
9861007
.rail > .panel:first-child {
1008+
order: 1;
9871009
min-height: auto;
9881010
}
1011+
.rail > .view-toggle {
1012+
order: 2;
1013+
justify-self: stretch;
1014+
width: 100%;
1015+
}
1016+
.rail > .panel--dossier {
1017+
order: 4;
1018+
}
9891019
.doctrine-panel {
9901020
height: auto;
9911021
aspect-ratio: 380 / 307;

0 commit comments

Comments
 (0)