Install
$ agentstack add skill-ggombee-code-forge-emotion ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Emotion 스타일링 규칙
기본 규칙
@emotion/styled또는cssprop을 사용한다- 전역 스타일은
packages/shared/styles/globalStyles에만 정의한다
스타일 컴포넌트 위치 기준
간단한 스타일: 컴포넌트 파일 하단
// components/OrderCard/index.tsx
const OrderCard = () => {
return ...;
};
export default OrderCard;
// 파일 하단에 스타일 정의
const Container = styled.div`
padding: 16px;
`;
복잡한 스타일: *.styled.ts 파일로 분리
// components/OrderCard/styled.ts
export const Container = styled.div`...`;
export const Header = styled.div`...`;
export const Footer = styled.div`...`;
// components/OrderCard/index.tsx - named import 사용
import { Container, Header, Footer } from './styled';
색상 토큰 사용
직접 색상값을 쓰지 않고 semanticColor 토큰을 사용한다:
// ✅ 좋은 예
import { semanticColor } from '@repo/shared/styles/foundation/semanticColor';
const StyledDiv = styled.div`
color: ${semanticColor.text.primary};
background: ${semanticColor.bg.surface};
`;
// ❌ 나쁜 예
const StyledDiv = styled.div`
color: #333333;
background: #ffffff;
`;
파일 명명 규칙
| 유형 | 규칙 | 예시 | | -------------- | ----------------------- | -------------------------- | | 스타일 파일 | 컴포넌트명.styles | OrderCard.styles.ts | | 분리된 스타일 | styled.ts 또는 styled.tsx | styled.ts |
체크리스트
스타일 작성 전:
- [ ] 스타일 양이 간단한가? → 컴포넌트 파일 하단
- [ ] 스타일이 복잡한가? →
styled.ts로 분리 - [ ] 직접 색상값(hex, rgb) 없이 semanticColor 토큰 사용?
- [ ] 전역 스타일을 임의로 추가하지 않는가?
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ggombee
- Source: ggombee/code-forge
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.