Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/telegram-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,19 @@ jobs:
SHA="${{ github.sha }}"
REF="${{ github.ref }}"

PREFIX="[decoded-monorepo]"

case "$EVENT_NAME" in
workflow_dispatch)
MSG="🔧 decoded — manual trigger by ${ACTOR}"
MSG="${PREFIX} 🔧 manual trigger by ${ACTOR}"
;;

push)
SHORT="${SHA:0:7}"
BRANCH="${REF#refs/heads/}"
COMMIT_MSG=$(jq -r '.head_commit.message // empty' "$GITHUB_EVENT_PATH" | head -1 | head -c 200)
COMMIT_URL="${SERVER}/${REPO}/commit/${SHA}"
MSG="📦 decoded push → ${BRANCH}
MSG="${PREFIX} 📦 push → ${BRANCH}
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
${SHORT} ${COMMIT_MSG}
by ${ACTOR}
Expand All @@ -65,7 +67,7 @@ jobs:
ADDITIONS=$(jq -r '.pull_request.additions // 0' "$GITHUB_EVENT_PATH")
DELETIONS=$(jq -r '.pull_request.deletions // 0' "$GITHUB_EVENT_PATH")
CHANGED=$(jq -r '.pull_request.changed_files // 0' "$GITHUB_EVENT_PATH")
MSG="🔀 decoded PR #${NUM}
MSG="${PREFIX} 🔀 PR #${NUM}
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
${TITLE}
${HEAD} → ${BASE}
Expand All @@ -81,7 +83,7 @@ jobs:
AUTHOR=$(jq -r '.issue.user.login' "$GITHUB_EVENT_PATH")
URL=$(jq -r '.issue.html_url' "$GITHUB_EVENT_PATH")
LABELS=$(jq -r '[.issue.labels[].name] | join(", ")' "$GITHUB_EVENT_PATH")
MSG="📌 decoded issue #${NUM}
MSG="${PREFIX} 📌 issue #${NUM}
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
${TITLE}
${LABELS:-no labels}
Expand Down Expand Up @@ -109,7 +111,7 @@ jobs:
LABEL="배포 실패"
fi

MSG="${ICON} decoded deploy — ${LABEL}
MSG="${PREFIX} ${ICON} deploy — ${LABEL}
┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
env: ${ENV_NAME}
ref: ${DEPLOY_REF}
Expand Down
10 changes: 10 additions & 0 deletions .planning/NEXT-GEN-MAGAZINE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!--
이 문서는 decoded-docs vault로 이관되었습니다 (2026-05-15).
최신 내용은 decoded-docs 에서 관리합니다.
-->

# 디코디드 — Next-Gen Magazine 컨셉 기획서

➡️ **이 문서는 [decoded-docs/Project/next-gen-magazine.md](https://github.com/decodedcorp/decoded-docs/blob/main/Project/next-gen-magazine.md) 로 이관되었습니다.**

decoded-docs 가 회사의 single source of truth 이고 매니저 agent도 vault 기준으로 답변합니다. 더 이상 이 파일을 편집하지 마세요.
10 changes: 10 additions & 0 deletions .planning/vertical-layers-strategy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!--
이 문서는 decoded-docs vault로 이관되었습니다 (2026-05-15).
최신 내용은 decoded-docs 에서 관리합니다.
-->

# Vertical Layers Strategy — Tagged 메커닉의 데이터 자산화

➡️ **이 문서는 [decoded-docs/Project/vertical-layers-strategy.md](https://github.com/decodedcorp/decoded-docs/blob/main/Project/vertical-layers-strategy.md) 로 이관되었습니다.**

decoded-docs 가 회사의 single source of truth 이고 매니저 agent도 vault 기준으로 답변합니다. 더 이상 이 파일을 편집하지 마세요.
11 changes: 11 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

짧은 **맵**입니다. 라우트/API/훅/디자인 시스템 **표·인벤토리**는 [`docs/agent/`](docs/agent/)에 두었습니다. 해당 작업을 할 때는 항상 해당 파일을 연 뒤 진행합니다.

## Documentation 위치 (decoded vs decoded-docs)

| 종류 | 위치 |
|------|------|
| 코드 · LLM 라우팅 · agent 인벤토리 · spec | **이 레포** (`docs/agent/`, `docs/superpowers/`, `CLAUDE.md`, 등) |
| 회의 · 결정 · 기획 · 아키텍처 · 회고 | **[decoded-docs vault](https://github.com/decodedcorp/decoded-docs)** (별도 레포) |

전체 sync policy: [decoded-docs/Guides/sync-policy.md](https://github.com/decodedcorp/decoded-docs/blob/main/Guides/sync-policy.md)

회사 지식 질의 (예: "지난주 결정 뭐였어?", "에디토리얼 매거진 방향성") 는 Telegram의 매니저 agent 에게 물어보면 vault 기반으로 답변합니다.

## Overview

Monorepo for the decoded platform — image/item discovery and curation with behavioral intelligence, editorial magazine system (news-referenced), virtual try-on (VTON), admin dashboard (seed pipeline, entity management, monitoring), SEO infrastructure, and design system (v2.0). AI-powered item detection (Ollama vision auto-tagging), social actions (like/save/comment/follow), personalization, rankings, collection/studio.
Expand Down
Loading