test(coverage): remaining test hooks + lint fixes#138
Open
Delqhi wants to merge 24 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
🏆 CEO Audit — A+ (100.0/100)
📥 Download full report (Markdown)
|
🏆 CEO Audit — A+ (100.0/100)
📥 Download full report (Markdown) Run ID:
|
| if _, err := io.Copy(tmp, bytes.NewReader(data)); err != nil { | ||
| tmp.Close() | ||
| if _, err := writeJSONCopyFn(tmp, bytes.NewReader(data)); err != nil { | ||
| writeJSONCloseFn(tmp) |
| if _, err := tmp.Write([]byte("\n")); err != nil { | ||
| tmp.Close() | ||
| if _, err := writeJSONWriteFn(tmp, []byte("\n")); err != nil { | ||
| writeJSONCloseFn(tmp) |
…owers overlay, agent_runner
| if _, err := io.Copy(tmp, strings.NewReader(string(data))); err != nil { | ||
| tmp.Close() | ||
| if _, err := ioCopyHook(tmp, strings.NewReader(string(data))); err != nil { | ||
| fileCloseHook(tmp) |
| if _, err := tmp.Write([]byte("\n")); err != nil { | ||
| tmp.Close() | ||
| if _, err := fileWriteHook(tmp, []byte("\n")); err != nil { | ||
| fileCloseHook(tmp) |
…, vane, webui, tui, tui/chat
- Add skills/embed.go to embed skills/ directory via skillsmith - Add sin-code skills list|install subcommand - Add validate_skill.py --all-bundled and CI gate - Convert all bundled skills to SKILL.md + context + frameworks + tasks + templates + LICENSE - Wire NewSkillsCmd into main.go
skillsmith is required by the new sin-code skills list|install subcommand
- Remove duplicate adw/oracle/efm/ibd/poc commands in cli.py - Fix except ImportError as exc scoping for fallback commands - Add missing __all__ exports and imports - Fix broad-regex-damaged comprehensions - Add noqa for optional yaml import
… and add enterprise-plan + enterprise-deep-debug
…d add github-skills category
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR collects the remaining uncommitted coverage test hooks and the lint fixes needed to get CI green.
Changes
cmd/sin-code/internal/superpowers/superpowers.gocmd/sin-code/internal/vane/vane.goandmcpserver.gocmd/sin-code/tui/agent_runner_adapter.gocmd/sin-code/tui/chat/input.gocmd/sin-code/tui/chat/runner.gogofmtandgoimportsacross the affected packages to fix the CI lint failure.Verification
go test ./cmd/sin-code/... -skip 'TestRunEFM|TestDockerCompose|TestDetectContainerRuntime|TestComposeCandidates|TestResolveComposeRuntime|TestParseComposeStates|TestListEFM|TestRunSecurityScan' -count=1 -timeout 600spasses locally.golangci-lintshould now pass.No breaking changes.