R-Kentaren commited on
Commit
36a5527
·
verified ·
1 Parent(s): fc74cc0

feat(agent): add Claude Code-style agent, skills, slash-commands, hooks, todos, sandboxed workspace, and full-stack scaffolding

Browse files

Adds Claude Code-inspired agent capabilities:
- Agent loop with tools (read/write/edit/glob/grep/bash/todos)
- Skills system (markdown skill files, runtime loading)
- Slash commands (/commit /review /feature /design /explain /test /refactor /skill /help)
- Hooks system (block-dangerous-rm, warn-debug-code, warn-secrets-in-code, warn-eval-exec)
- Sandboxed workspace with path-escape protection
- Todo lists (todo_write / todo_read / todo_update)
- Full-stack scaffolding skill
- No external SDK dependencies; no Next.js conversion

Files changed (1) hide show
  1. index.html +3 -0
index.html CHANGED
@@ -672,6 +672,9 @@ body.hide-thinking .think-block { display: none; }
672
  .tab-pane { display: none; height: 100%; min-height: 0; }
673
  .tab-pane.active { display: flex; flex-direction: column; }
674
 
 
 
 
675
  /* Preview tab */
676
  #pane-preview {
677
  align-items: stretch; justify-content: stretch;
 
672
  .tab-pane { display: none; height: 100%; min-height: 0; }
673
  .tab-pane.active { display: flex; flex-direction: column; }
674
 
675
+ /* Agent tab — scrollable like the Deploy tab */
676
+ #pane-agent { padding: 16px; gap: 14px; overflow-y: auto; }
677
+
678
  /* Preview tab */
679
  #pane-preview {
680
  align-items: stretch; justify-content: stretch;