Enhanced code review and frontend validation with intelligent triggers: Code Review Agent Enhancement: - Added Sequential Thinking MCP integration for complex issues - Triggers on 2+ rejections or 3+ critical issues - New escalation format with root cause analysis - Comprehensive solution strategies with trade-off evaluation - Educational feedback to break rejection cycles - Files: .claude/agents/code-review.md (+308 lines) - Docs: CODE_REVIEW_ST_ENHANCEMENT.md, CODE_REVIEW_ST_TESTING.md Frontend Design Skill Enhancement: - Automatic invocation for ANY UI change - Comprehensive validation checklist (200+ checkpoints) - 8 validation categories (visual, interactive, responsive, a11y, etc.) - 3 validation levels (quick, standard, comprehensive) - Integration with code review workflow - Files: .claude/skills/frontend-design/SKILL.md (+120 lines) - Docs: UI_VALIDATION_CHECKLIST.md (462 lines), AUTOMATIC_VALIDATION_ENHANCEMENT.md (587 lines) Settings Optimization: - Repaired .claude/settings.local.json (fixed m365 pattern) - Reduced permissions from 49 to 33 (33% reduction) - Removed duplicates, sorted alphabetically - Created SETTINGS_PERMISSIONS.md documentation Checkpoint Command Enhancement: - Dual checkpoint system (git + database) - Saves session context to API for cross-machine recall - Includes git metadata in database context - Files: .claude/commands/checkpoint.md (+139 lines) Decision Rationale: - Sequential Thinking MCP breaks rejection cycles by identifying root causes - Automatic frontend validation catches UI issues before code review - Dual checkpoints enable complete project memory across machines - Settings optimization improves maintainability Total: 1,200+ lines of documentation and enhancements Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
2.2 KiB
Plaintext
30 lines
2.2 KiB
Plaintext
Table "public.connect_machines"
|
|
Column | Type | Collation | Nullable | Default
|
|
-------------------+--------------------------+-----------+----------+------------------------------
|
|
id | uuid | | not null | gen_random_uuid()
|
|
agent_id | character varying(255) | | not null |
|
|
hostname | character varying(255) | | not null |
|
|
os_version | character varying(255) | | |
|
|
is_elevated | boolean | | | false
|
|
is_persistent | boolean | | | true
|
|
first_seen | timestamp with time zone | | | now()
|
|
last_seen | timestamp with time zone | | | now()
|
|
last_session_id | uuid | | |
|
|
status | character varying(20) | | | 'offline'::character varying
|
|
created_at | timestamp with time zone | | | now()
|
|
updated_at | timestamp with time zone | | | now()
|
|
agent_version | character varying(32) | | |
|
|
update_status | character varying(32) | | |
|
|
last_update_check | timestamp with time zone | | |
|
|
Indexes:
|
|
"connect_machines_pkey" PRIMARY KEY, btree (id)
|
|
"connect_machines_agent_id_key" UNIQUE CONSTRAINT, btree (agent_id)
|
|
"idx_connect_machines_agent_id" btree (agent_id)
|
|
"idx_connect_machines_status" btree (status)
|
|
"idx_machines_update_status" btree (update_status)
|
|
"idx_machines_version" btree (agent_version)
|
|
Referenced by:
|
|
TABLE "connect_sessions" CONSTRAINT "connect_sessions_machine_id_fkey" FOREIGN KEY (machine_id) REFERENCES connect_machines(id) ON DELETE CASCADE
|
|
TABLE "user_client_access" CONSTRAINT "user_client_access_client_id_fkey" FOREIGN KEY (client_id) REFERENCES connect_machines(id) ON DELETE CASCADE
|
|
Triggers:
|
|
update_connect_machines_updated_at BEFORE UPDATE ON connect_machines FOR EACH ROW EXECUTE FUNCTION update_connect_updated_at() |