AWS의 AI-DLC (AI-Driven Development Life Cycle): robust 바이브 코딩
·
Dev
참고 링크AWS AIDLC: https://aws.amazon.com/ko/blogs/devops/open-sourcing-adaptive-workflows-for-ai-driven-development-life-cycle-ai-dlc/ Open-Sourcing Adaptive Workflows for AI-Driven Development Life Cycle (AI-DLC) | Amazon Web ServicesAI-Driven Development Life Cycle (AI-DLC) holds the promise of unlocking the full potential of AI in software development. By emphasizing AI-led workflows and human-..
Claude Code - .claude/ 폴더 구조 정리
·
LLM AI Agent
updated: 2026-06-15전체 구조 요약프로젝트/.claude/ ← 팀 공유, git commit├── CLAUDE.md # 프로젝트 영구 메모리 (매 세션 로드)├── settings.json # 공유 설정 (권한, hooks, MCP)├── settings.local.json # 로컬 전용 오버라이드 (gitignore)├── skills/ # 컨텍스트 기반 자동 발동 워크플로우├── commands/ # 수동 슬래시 커맨드 (레거시 → skills 통합 중)├── agents/ # 컨텍스트 격리 서브에이전트├── rules/ ..
Claude Code - CLAUDE.md와 skills/로 업무 자동화 예제
·
LLM AI Agent
배경본인은 Markdown으로 연구/공부 노트를 관리한다.Markdown 페이지끼리 link를 걸어둘 때가 많은데, 내가 A 페이지에서 만든 링크 destination B 페이지가 있다고 가정하면, destination B 페이지의 주소가 바뀌어도 A 페이지의 destination link가 알아서 업데이트 되지 않아 나중에 못 찾는 불편함이 있다. 목표같은 프로젝트에서 Markdown끼리 hyperlink가 있을 때, dead link들을 1) 찾고 2) 수정할 수 있는직접 실행할 수 있는 function 만들기 (skills/)function이 알아서 trigger 되도록 만들기 (CLAUDE.md)CLAUDE.md, SKILL.md 이해하기참고) command가 skill로 통합됨Claude Cod..
개인 서버 CLI에 Claude Code + Discord - Claude Code Mobile 비교
·
Dev
현재, Claude Code에 Discord를 연결해서 사용중이다. 기존 Claude Code에서 만든 모바일 접속 클라이언트(Remote Control과 붙여 사용)가 있긴 하나 Claude Code를 단순 개발 목적 이외(타인 공유)에도 사용하고 있기 때문에 잘 사용하고 있다. 어떤 장단이 있는지 정리해보고자 한다. 요약비교 코드 버전: ybjeon/claude-discord-bot/releases/tag/v1.0.3항목Claude Code + Discord (v1.0.3)Claude Code Remote Control (Mobile)Author나Claude사용법Discord bot을 생성해서 channel과 연결Claude Code session 열기장점Claude 계정이 없어도 channel을 열..
26.06.13 Fable 5 출시와 미국 정부 제재
·
Tech News
1) Fable 5 출시 - 26.06.09https://www.anthropic.com/news/claude-fable-5-mythos-5요약Claude Fable 5는 Anthropic이 2026년 6월 9일 발표한 5세대 Claude 모델. Anthropic은 “가장 야심찬 작업”을 위한 모델이라고 설명하며, 며칠 단위의 복잡하고 비동기적인 작업을 지속할 수 있다고 소개핵심은 장기 실행 agent 작업. Claude Code나 Claude Managed Agents 같은 agent harness에서 여러 단계로 계획하고, sub-agent에 위임하고, 스스로 결과를 점검하는 방식의 작업을 겨냥주요 사용처는 coding, enterprise workflow, vision. 대규모 migration, ..
개인 서버 CLI에 Claude Code + Discord - #4 다중 권한 설정 + @멘션으로 봇 호출
·
Dev
목표다중 인스턴스/버전 지원 - 프로젝트 디렉토리, 권한 (Multi-user 환경 고려)봇 호출 방식을 멘션으로 변경 (Multi-user 환경 고려)봇끼리 메모리를 공유 방지 (보안)가정: User가 아닌 세션 단위로 대화 공유코드코드 링크: https://github.com/ybjeon/claude-discord-bot버전: tag/v1.0.3권한 설정뷰어 권한: A,B관리자 권한: A,B,C 이렇게 설정하고 싶으면 instances/project_name/ㄴ .envㄴ session.jsonㄴ settings.json /.claude/settings.json에 권한: A,B,C Allow/.claude/settings.json에 권한: A,B,C Allowinstances/project_name..
Security Implementation in Enterprise Agent Platform
·
AI Agent Security
Enterprise Agent Platform의 Security Implementation1. Goal엔터프라이즈 생성형 AI 플랫폼을 security implementation 관점에서 비교한다.핵심 질문은 다음과 같다.이 플랫폼에서 Agent는 누구의 권한으로 동작하고, 어떤 Tools 또는 MCP를 호출하며, 그 동작은 어떻게 통제되고 감사되는가?Main PointsUser / Agent IdentityPermission DelegationAgent별 Least PrivilegeTool / MCP ControlGuardrailsContent FilteringPrompt Injection DefenseDLP / Sensitive Data DetectionNetwork IsolationAudit / L..
Microsoft Multi-Agent Reference Architecture
·
AI Agent Security
Source: microsoft/multi-agent-reference-architecture Microsoft Multi-Agent Reference Architecture는 robust한 멀티 에이전트 시스템을 설계하기 위한 개념적 가이드다.Microsoft 고객과 함께 구축한 production-scale solution에서 얻은 내용을 바탕으로 한다.특정 기술에 종속되지 않지만, 개별 에이전트 개발보다는 orchestration과 governance에 초점을 둔다.Design PrinciplesSeparation of Concerns각 에이전트는 명확하게 정의된 고유 책임을 가진다. 이를 통해 집중적인 개발과 깊은 도메인 전문성을 확보할 수 있다.Secure by Design인증, 권한 부여, 정..
Agentic Network: Gateway 디자인 패턴
·
AI Agent Security
원본 링크:https://github.com/ybjeon/research-note/blob/main/ai-agent-security/agentic-network.mdGateway Design PatternAgent끼리 통신을 하는 Agentic Network를 만든다고 했을 때, access control이나 auditing을 하기 위해서는 gateway가 필요하다. 겉으로는 Agent들이 서로 직접 대화하는 것처럼 보여도, 실제 구현에서는 중앙 Gateway나 Orchestrator가 메시지를 관리하는 경우가 많다. Agent 간 통신을 중간에서 처리하거나, 연결만 도와주거나, 암호화된 메시지만 전달하는 역할을 할 수도 있다. Gateway가 어디까지 개입하느냐에 따라 네트워크 구조와 보안 모델이 달라..
개인 서버 CLI에 Claude Code + Discord - #3 채널마다 프로젝트 연결 + write 테스트
·
Dev
목표Claude code 연결Write 테스트코드코드 링크: https://github.com/ybjeon/claude-discord-bot버전: tag/v1.0.2 Write 테스트Claude에 Write를 시켜봤다.다른 방법으로 Tool 권한을 allow 해줘야한다. 1. 자주 쓰는 도구를 미리 allowlist에 넣기1) Claude code 이용 (추천 안함, 귀찮음)Claude Code UI 또는 CLI에서:/permissions 로 들어가서 자주 필요한 도구를 Allow로 바꾸면 된다.ex) Read, Edit, 특정 Bash 명령 등Allow rule은 해당 도구를 수동 승인 없이 쓰게 하고, Ask rule은 매번 확인을 요구 (Chatting으로는 불가능)프로젝트 또는 사용자 설정에 a..