├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── go.mod ├── handlers ├── commit_message.go ├── loripsum.go └── user.go └── main.go /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/go.mod -------------------------------------------------------------------------------- /handlers/commit_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/handlers/commit_message.go -------------------------------------------------------------------------------- /handlers/loripsum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/handlers/loripsum.go -------------------------------------------------------------------------------- /handlers/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/handlers/user.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/skillset-example/HEAD/main.go --------------------------------------------------------------------------------