feat: dependabot weekly schedule, getting-started tutorial, ADRs, and VS Code quick-fix actions#1074
Merged
Gbangbolaoluwagbemiga merged 1 commit intoJun 29, 2026
Conversation
… VS Code quick-fix actions - HyperSafeD#1037: update dependabot.yml to weekly intervals with labels, reviewers, and add auto-merge workflow for patch/minor Dependabot PRs - HyperSafeD#1041: expand docs/getting-started.md with a 5-minute tutorial covering minimal contract creation, first scan, fixing findings, and clean re-run; update README primary CTA to feature the tutorial - HyperSafeD#1044: add ADRs 006-009 documenting rationale for Z3, syn AST parser, SARIF output format, and Soroban/WASM target selection - HyperSafeD#1048: implement SanctifierCodeActionProvider (VS Code quick-fix lightbulbs) for S001/S002/S003/S006 findings; add pure fix helpers to analyzer.ts; register provider in extension.ts; 21 new tests, all passing
|
@bbjiggy is attempting to deploy a commit to the gbangbolaoluwagbemiga's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@meshackyaro Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
339a36a
into
HyperSafeD:main
13 of 34 checks passed
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.
Closes #1037, Closes #1041, Closes #1044, Closes #1048
Summary
[ci] Add dependency update bot: Dependabot for npm, Cargo, and GitHub Actions #1037 — Dependabot configuration: Updated
.github/dependabot.ymlto use weekly schedules (monday) for all ecosystems (cargo, npm, github-actions), addedreviewersandlabelsper ecosystem, and added.github/workflows/dependabot-auto-merge.ymlto auto-merge patch and minor Dependabot PRs viagh pr merge --auto.[docs] Write a Getting Started tutorial: scan your first Soroban contract in 5 minutes #1041 — Getting Started tutorial: Expanded
docs/getting-started.mdinto a full 5-minute tutorial: install viacargo install sanctifier-cli, create a minimal Soroban contract with three intentional findings, runsanctifier analyze, interpret the output, fix each finding (S001/S002/S003), and re-run to confirm a clean report. Added an asciinema recording note and updated the README to feature the tutorial as the primary call to action.[docs] Add architecture decision records (ADRs) for major technical choices #1044 — Architecture Decision Records: Added four new ADRs in
docs/adr/using the MADR format, each covering context, decision, alternatives considered, and consequences:006-z3-formal-verification.md— why Z3 over Kani or Creusot007-syn-ast-parser.md— whysynover tree-sitter or a custom parser008-sarif-output-format.md— why SARIF 2.1.0 over custom JSON or Checkstyle009-soroban-wasm-target.md— why Soroban/WASM over EVM or CosmWasm[vscode] Add inline code actions (quick-fix lightbulbs) for Sanctifier findings #1048 — VS Code quick-fix lightbulbs: Implemented
SanctifierCodeActionProviderinvscode-extension/src/code-actions.ts, registered inextension.ts. Pure fix helpers (buildRequireAuthInsertLine,buildUnwrapFix,buildCheckedArithFix) added toanalyzer.ts. Lightbulbs appear for:.unwrap()call is on the flagged linenpm test).Test plan
cd vscode-extension && npm test— all 138 tests pass.rsfile with S001/S003/S006 findings in VS Code — lightbulb should appear; applying fix should insert/replace correct codedocs/getting-started.mdend-to-end on a fresh machine to validate the tutorial