vault/
├── .claude/ # Claude Code設定・スキル
│ ├── skills/ # スキル(Slash Commands)
│ └── scripts/ # スクリプト
├── 00_Inbox/ # 一時保存場所
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"schemaVersion":1,"label":"Coverage","message":"Unknown%","color":"brightgreen"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper | |
| import java.io.IOException | |
| import java.io.InputStream | |
| import java.io.PrintStream | |
| import java.net.HttpURLConnection | |
| import java.net.URL | |
| import java.nio.charset.Charset | |
| object SampleClient { | |
| data class ResponseData(val status : Int, val responseBody : String) { |