An open API service indexing awesome lists of open source software.

https://github.com/cjaewon/skillgo

πŸ“¦ Go 을 μœ„ν•œ kakao i open builder skill 응닡 포맷 생성 λͺ¨λ“ˆ
https://github.com/cjaewon/skillgo

kakao-bot kakao-i-openbuilder kakaoembed

Last synced: 3 months ago
JSON representation

πŸ“¦ Go 을 μœ„ν•œ kakao i open builder skill 응닡 포맷 생성 λͺ¨λ“ˆ

Awesome Lists containing this project

README

        

# skillgo
![Kakao Skill Payload Version](http://img.shields.io/badge/Kakao%20SkillPayload%20Version-v2-yellow?style=flat-square&)
[![Go Report Card](https://goreportcard.com/badge/github.com/cjaewon/skillgo)](https://goreportcard.com/report/github.com/cjaewon/skillgo)

πŸ“¦ Go 을 μœ„ν•œ kakao i open builder skill 응닡 포맷 생성 λͺ¨λ“ˆ

[πŸ—žοΈ Docs - pkg.go.dev](https://pkg.go.dev/github.com/cjaewon/skillgo?tab=doc)
[🟑 JavaScript Version](https://github.com/cjaewon/kakaoEmbed)

## μ„€μΉ˜
```sh
go get github.com/cjaewon/skillgo
```

## μ£Όμš” νƒ€μž…
| 이름 | νƒ€μž… |
| - | - |
| [**SkillPayload**](https://i.kakao.com/docs/skill-response-format#skillpayload) | `SkillPayload` |
| [**SkillResponse**](https://i.kakao.com/docs/skill-response-format#skillresponse) | `SkillResponse` |
| [**SkillTemplate**](https://i.kakao.com/docs/skill-response-format#skilltemplate) | `SkillTemplate` |
| [**ContextControl**](https://i.kakao.com/docs/skill-response-format#contextcontrol) | `ContextControl` |
| [**QuickReplies**](https://i.kakao.com/docs/skill-response-format#quickreplies) | `QuickReplies` |

## μ§€μ›ν•˜λŠ” SkillResponse

### κΈ°λ³Έ

| SkillResponse | νƒ€μž… (struct) | ν•¨μˆ˜ 이름 |
| - | - | - |
| [**SimpleText**](https://i.kakao.com/docs/skill-response-format#simpletext) | `SimpleTextType` | SimpleText |
| [**SimpleImage**](https://i.kakao.com/docs/skill-response-format#simpleimage) | `SimpleImageType` | SimpleImage |
| [**BasicCard**](https://i.kakao.com/docs/skill-response-format#basiccard) | `BasicCardType` | BasicCard |
| [**CommerceCard**](https://i.kakao.com/docs/skill-response-format#commercecard) | `CommerceCardType` | CommerceCard |
| [**ListCard**](https://i.kakao.com/docs/skill-response-format#listcard) | `ListCardType` | ListCard |
| [**Carousel**](https://i.kakao.com/docs/skill-response-format#carousel) | `CarouselType` | Carousel |

### 곡톡
[kakao i μ˜€ν”ˆλΉŒλ” 곡톡](https://i.kakao.com/docs/skill-response-format#%EA%B3%B5%ED%86%B5)

| SkillResponse | νƒ€μž… (struct) | ν•¨μˆ˜ 이름 |
| - | - | - |
| [**Thumbnail**](https://i.kakao.com/docs/skill-response-format#thumbnail) | `ThumbnailType` | Thumbnail |
| [**Link**](https://i.kakao.com/docs/skill-response-format#link) | `LinkType` | Link |
| [**Button**](https://i.kakao.com/docs/skill-response-format#button) | `ButtonType` | Button |
| [**Profile**](https://i.kakao.com/docs/skill-response-format#profile) | `ProfileType` | Profile |
| [**CarouselHeader**](https://i.kakao.com/docs/skill-response-format#carouselheader) | `CarouselHeaderType` | CarouselHeader |

## 예제

[πŸ“„ **Simple (SimpleText, SimpleImage)**](https://github.com/cjaewon/skillgo/tree/master/_examples/simple)
[πŸ“„ **Card (BasicCard, CommerceCard, Listcard)**](https://github.com/cjaewon/skillgo/tree/master/_examples/card)