No description
Find a file
toki 5d65cbf2d5 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다
프로젝트에서 일관된 AI 에이전트(Gemini, Claude, Cursor 등) 활용 및 운영을 위해 공통 스킬, 도메인 규칙, 관련 무시(ignore) 파일 등 agent-ops 기반 프레임워크 초기 환경을 구성함.
2026-05-21 10:06:16 +09:00
.claude 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
agent-ops 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
src init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
.aiexclude 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.clineignore 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.clinerules 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.cursorignore 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.cursorrules 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.env.example init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
.geminiignore 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
.gitignore 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
AGENTS.md 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
CLAUDE.md 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
GEMINI.md 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
index.html init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
opencode.json 설정: agent-ops 및 AI 에이전트 환경 설정을 추가한다 2026-05-21 10:06:16 +09:00
package-lock.json init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
package.json init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
README.md init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
tsconfig.json init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00
vite.config.ts init: 프로젝트 초기 구조 설정 2026-05-21 09:40:37 +09:00

nomadcode-web

nomadcode-web is the initial React web frontend scaffold for NomadCode Server. It gives Agent Chat, Project Manage, and Settings pages a small but expandable layout.

Stack

  • React
  • TypeScript
  • Vite
  • TanStack Router
  • TanStack Query
  • Zustand
  • Plain CSS

Run

npm install
npm run dev

Environment

VITE_NOMADCODE_API_BASE_URL=http://localhost:8080

The default matches the current nomadcode-core local server.

Pages

  • /agent
  • /projects
  • /settings

Mock and Stub Areas

  • Agent messages are local mock state.
  • Project actions log or open placeholder links.
  • Settings integrations show mock configured/status values.
  • Plane, Mattermost, IOP, and Agent Integrator calls are not implemented.
  • WebSocket and proto-socket runtime flows are not implemented.

Next Steps

  • Connect task creation/listing to nomadcode-core /api/tasks.
  • Add server-backed settings persistence.
  • Add real project metadata loading.
  • Add authenticated API access when Core auth is finalized.