Skip to content

Implement the SoftwareDevLabs design project: all 17 screens#12

Merged
vinod0m merged 35 commits into
mainfrom
development
Jul 7, 2026
Merged

Implement the SoftwareDevLabs design project: all 17 screens#12
vinod0m merged 35 commits into
mainfrom
development

Conversation

@vinod0m

@vinod0m vinod0m commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

Ports every screen of the SoftwareDevLabs Claude Design project (claude.ai/design/p/c22e83d4-…) into the React app, and fixes the reported "project UI elements don't work" issues.

What this does

  • 17 screens implemented behind the hash router, all in a shared dark project shell (topbar + grouped sidebar + Ask-the-agents chat): Workspace, Login, Findings, project Dashboard, Evidence, Audit, Traceability, Vulnerabilities, Releases, All-items, Risks, Risk controls, SBOM, Agents, Connectors, Settings, Graph.
  • Fixes the "everything broken in projects" report: what read as broken was 13 unported placeholder screens plus a few real UX bugs. Every sidebar destination is now a working screen; SCREEN_NAMES (placeholder map) is empty.
  • Design-fidelity + a11y fix wave: Ask-the-agents chat mounted on every project screen (was Workspace-only), :focus-visible focus rings restored app-wide (WCAG 2.2), dead project cards fixed, placeholders re-skinned into the project shell, login font tokens, chat double-submit guard, route-lookup + audit-id fixes.
  • Interactive behavior preserved from the prototypes (approve/sign, generate/export, config changes writing signed audit entries, connector/endpoint requests), persisted through the shared sandbox state.
  • Also on-branch: Python packaging migrated to uv, *.test.ts excluded from the app typecheck, local AI-tooling dirs gitignored.

Verification

  • npm run build green.
  • Independent whole-branch code review of the 7 inline-ported screens: no Critical/Important defects.
  • Live browser click-through of all 17 routes: real content in the shell, zero placeholders, zero console errors; Graph SVG renders (41 nodes / 40 edges), chat/approve/SBOM-form/focus-rings all present.

Vendored prototype records live in design/sandbox/*.dc.html; design/README.md maps each prototype to its implementation.

🤖 Generated with Claude Code

https://claude.ai/code/session_01KnrqhvToYukyZZ3Hn5e7Ri

vinod0m and others added 25 commits July 6, 2026 21:56
pyproject.toml + uv.lock replace the empty requirements.txt and setup.py.
CI workflows and docs now install dependency groups via uv sync.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…n project

Implements the Workspace (app shell, five views, Ask-the-agents panel) and
Login (mock auth against the demo sandbox account) prototypes as React pages,
wired into the hash router. Brings in the design-system tokens, self-hosted
Geist fonts, DS components (Badge/Tag/Button), and the typed synthetic data
layer. Vendored prototype copies and the port record live in design/.

Sign-out now lands on #/login; successful sign-in lands on the Workspace.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ject

Split list/detail findings review with filter chips, j/k/a/r keyboard flow,
approve/modify/reject decisions persisted to the sandbox state with signed
audit entries, and a batch-approve bar. Introduces the shared project-level
app shell (ProjectShell) that upcoming project screens reuse; unported nav
targets land on the placeholder page.

Runtime-verified end to end (select, filter, keyboard, approve, modify,
batch, persistence across reload); spec review against the vendored
prototype came back clean.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…t-shell placeholders

T1 fix bundle from the design-fidelity audit:

- Mount AskAgentsPanel in ProjectShell so every project screen gets the
  floating "Ask the agents" chat, matching the design prototypes
- Add app-wide :focus-visible outline rules (2px var(--focus-ring)) to
  workspace.css, restoring the prototypes' focus rings (WCAG 2.2)
- Replace hardcoded Geist font literals in LoginPage with
  var(--font-sans) / var(--font-mono) tokens
- Disable chat Send (and Enter-to-send) while a scripted reply is
  pending to prevent double-submit
- Render outline (non-deep) project cards in ProjectsView as non-link
  cards with an explanatory hint instead of dead self-links
- Route unported project screens to a placeholder inside the dark
  ProjectShell (sidebar highlights active item) instead of the legacy
  light Navigation shell; SCREEN_NAMES now exported and shared

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Review follow-up: 'route in SCREEN_NAMES' also matched inherited
Object.prototype keys from the user-controlled URL hash.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…roject

Port design/sandbox/Dashboard.dc.html's main content as ProjectDashboardPage
inside the shared ProjectShell: greeting header, project header card, KPI
cards (open findings, traceability health, latest evidence pack, EU CRA
readiness), projects table, recent activity feed, compliance readiness bars
and findings summary — all derived from sdlData and the shared sandbox state.
Route #/project-dashboard now renders the real screen (removed from the
placeholder list); the ACME project card lands here.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Untracked vitest test files (test runner not installed yet) were
breaking `tsc` in the build; tests keep living next to the code for
when the runner lands.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Review follow-up for the Dashboard port: the page sets data-dash-grid
but the responsive rule was missing from workspace.css.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Ports design/sandbox/Evidence.dc.html to frontend/pages/EvidencePage.tsx
inside the shared ProjectShell: pack list merged from sandbox state and
seeds, provenance chain per pack, on-demand draft pack generation,
approver signing with audit entries, and HTML/PDF export with the
sandbox watermark. Route #/evidence wired in App.tsx and removed from
the placeholder screen list.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Faithful port of design/sandbox/Audit.dc.html: append-only ledger of
sdl.sandbox.v1 audit entries ahead of the seed, All/Agent/Signature
filter chips, expandable deterministic replay records, and the
append-only footer note. Wires #/audit in App.tsx and drops it from
the placeholder screen list.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Review follow-up: makeAuditEntry added random jitter on top of a
monotonic counter, letting two entries collide on id — which doubles
as the React key and the expand-state key on the Audit screen.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…gn project

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ject

Summary cards, matched CVE list with VEX positions and finding links,
and ingested SBOM cards — all read-only from sdlData. Adds the
data-vuln-row responsive collapse rule and vendors the prototype.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Read-only release-gate surface from design/sandbox/Releases.dc.html:
one card per release with gate rows (mono check/cross + evidence ref)
and human approvals with signed/awaiting badges, driven by sdlData
releases. Wires #/releases and drops its placeholder entry.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KnrqhvToYukyZZ3Hn5e7Ri
…project

Unified read-only register of requirements, tests, risks, and risk
controls at #/items, with filter chips and a live count line. The
prototype's URL-fragment initial filter (Items.dc.html#tests) is a
deliberate simplification: our hash router has no sub-fragment support,
so the route always starts on 'all'.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01KnrqhvToYukyZZ3Hn5e7Ri
…ject

Read-only HARA/TARA register: three summary cards (HARA / TARA / flagged
suspect counts) and the risk rows with agent notes, ASIL and standard tags,
and status badges, all derived from the synthetic risk data. Suspect and
mitigation footer links route to Findings and Risk controls.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Read-only view: Controls/Verified/Open summary cards and the control rows,
each linking back to the risk it mitigates and naming the verifying test,
derived from the synthetic risk-control data.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ject

Add / remove / reschedule SBOMs, each a signed audit event persisted in the
shared sandbox state (config.sbomCfg). Add-form validates CycloneDX/SPDX file
names; the row list merges seed SBOMs with locally-added ones minus removed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…n project

Split view: agent list with add-agent form, per-agent config editor
(schedule/model saved as a signed config change), connected-tool chips, and
deterministic run history. Custom agents persist in the sandbox state and
every add/config-change appends a signed audit entry.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…project

Category grid of governed connectors (Available-sandbox / In-development /
Planned) with a detail panel showing read/write scopes and the permission
model, plus a request form that records tool requests in the sandbox state.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…oject

Model providers (connected self-hosted endpoints + a bring-your-own add-endpoint
form saved to sandbox state), roles & permissions table, approval rules from the
data layer, signing keys, and deployment-resource downloads. Mapped to
/project-settings (the app's legacy SettingsPage keeps /settings).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Read-only SVG of the bidirectional traceability graph built from the trace
chains — five columns (requirements → design → code → tests → analyses) with
deduped nodes and edges coloured intact or broken/suspect (dashed). Completes
the port of every screen in the SoftwareDevLabs design project.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings July 7, 2026 21:20

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@github-advanced-security github-advanced-security AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

check-spelling found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.

@github-actions

This comment has been minimized.

Comment thread design/sandbox/AgentsApp.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Dashboard.dc.html Outdated
Comment thread design/sandbox/Evidence.dc.html Outdated
Comment thread design/sandbox/Audit.dc.html Outdated
Comment thread design/sandbox/Evidence.dc.html Outdated
@vinod0m vinod0m requested a review from Copilot July 7, 2026 22:49
@vinod0m vinod0m self-assigned this Jul 7, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@vinod0m vinod0m added the enhancement New feature or request label Jul 7, 2026
vinod0m and others added 10 commits July 8, 2026 00:52
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
@vinod0m vinod0m merged commit eb6b458 into main Jul 7, 2026
11 of 18 checks passed
@vinod0m vinod0m deleted the development branch July 7, 2026 22:54
@github-actions

github-actions Bot commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

Unrecognized words (118)
AIRD
Ansys
appicable
asil
ASPICE
atlassian
autosar
bdd
Betriebsvereinbarung
Biuld
BPriority
buildtools
canvastext
causign
cdx
chev
claude
coc
codebeamer
Colortool
Counterarguments
Counterforces
cra
cve
cyberguard
detials
Devlabs
DSGVO
DVT
embeddings
EVID
evolutiona
ffe
FND
forlder
freetype
FTA
futher
gosec
gpt
hara
hmi
HRESULT
huggingface
INCOSE
ipt
itemis
kotlin
kpi
krause
LDRA
libexpat
linting
llm
lowlighter
maj
MATLAB
medini
moduke
mozilla
neede
NTSTATUS
nvd
OAL
OFL
ollama
openai
OSLC
osv
Oustanding
outome
Pankaj
Parasoft
PII
polarion
postconditions
princple
PTC
qwen
regen
relevants
rels
replayable
sbw
securego
selbg
sev
Simulink
skillsets
slm
SLX
softwaredevlabs
softwaremodule
SOURCEVERSION
spdx
statecharts
subcopy
swe
TAEF
teh
timeframe
topbar
transormatoin
txns
typehints
Unported
Unti
usecase
UWP
valididty
varients
vendored
verison
versio
vllm
vulns
waivable
WPF
These words are not needed and should be removed aaaaabbb aabbcc ABANDONFONT abbcc abcc ABCG ABE abgr ABORTIFHUNG ACCESSTOKEN acidev ACIOSS acp actctx ACTCTXW ADDALIAS ADDREF ADDSTRING ADDTOOL adml admx AFill AFX AHelper ahicon ahz AImpl AInplace ALIGNRIGHT allocing alpc ALTERNATENAME ALTF ALTNUMPAD ALWAYSTIP ansicpg ANSISYS ANSISYSRC ANSISYSSC answerback ANSWERBACKMESSAGE antialiasing ANull anycpu APARTMENTTHREADED APCA APCs APIENTRY apiset APPBARDATA appcontainer appletname APPLMODAL Applocal appmodel appshellintegration APPWINDOW APPXMANIFESTVERSION APrep APSTUDIO ARRAYSIZE ARROWKEYS ASBSET ASetting ASingle ASYNCDONTCARE ASYNCWINDOWPOS atch ATest atg aumid Authenticode AUTOBUDDY AUTOCHECKBOX autohide AUTOHSCROLL automagically autopositioning AUTORADIOBUTTON autoscrolling Autowrap AVerify awch azurecr AZZ backgrounded Backgrounder backgrounding backstory Bazz bbccb BBDM BBGGRR bbwe bcount bcx bcz BEFOREPARENT beginthread benchcat bgfx bgidx Bgk bgra BHID bigobj binlog binplace binplaced binskim bitcoin bitcrazed BITMAPINFO BITMAPINFOHEADER bitmasks BITOPERATION BKCOLOR BKGND BKMK Blt blu BLUESCROLL bmi bodgy BOLDFONT Borland boutput boxheader BPBF bpp BPPF branchconfig Browsable Bspace BTNFACE bufferout buffersize buflen buildsystems buildtransitive BValue Cacafire CALLCONV CANDRABINDU capslock CARETBLINKINGENABLED CARRIAGERETURN cascadia catid cazamor CBash cbiex CBN cbt Ccc cch CCHAR CCmd ccolor CCom CConsole CCRT cdd cds CELLSIZE cfae cfie cfiex cfte CFuzz cgscrn chafa changelists CHARSETINFO chshdng CHT CLASSSTRING cleartype CLICKACTIVE clickdown CLIENTID clipbrd CLIPCHILDREN CLIPSIBLINGS closetest cloudconsole cloudvault CLSCTX clsids cmatrix cmder CMDEXT cmh CMOUSEBUTTONS Cmts cmw CNL cnn codepages coinit colorizing COLORONCOLOR COLORREFs colorschemes colorspec colortable colortbl colortest colortool COLORVALUE comctl commdlg conapi conattrs conbufferout concfg conclnt concretizations conddkrefs condrv conechokey conemu CONIME conintegrity conintegrityuwp coninteractivitybase coninteractivityonecore coninteractivitywin coniosrv CONKBD conlibk conmsgl CONNECTINFO connyection CONOUT conprops conpropsp conptylib conserv consoleaccessibility consoleapi CONSOLECONTROL CONSOLEENDTASK consolegit consolehost CONSOLEIME CONSOLESETFOREGROUND consoletaeftemplates consoleuwp Consolewait CONSOLEWINDOWOWNER consrv constexprable contentfiles conterm contsf contypes conwinuserrefs coordnew COPYCOLOR COPYDATA COPYDATASTRUCT CORESYSTEM cotaskmem countof CPG cpinfo CPINFOEX CPLINFO cplusplus CPPCORECHECK cppcorecheckrules cpprestsdk cppwinrt cpx CREATESCREENBUFFER CREATESTRUCT CREATESTRUCTW createvpack crisman crloew CRTLIBS csbi csbiex CSHORT Cspace CSRSS csrutil CSTYLE CSwitch CTerminal ctl ctlseqs CTRLEVENT CTRLFREQUENCY CTRLKEYSHORTCUTS Ctrls CTRLVOLUME CUAS CUF cupxy CURRENTFONT currentmode CURRENTPAGE CURSORCOLOR CURSORSIZE CURSORTYPE CUsers CUU Cwa cwch CXFRAME CXFULLSCREEN CXHSCROLL CXMIN CXPADDEDBORDER CXSIZE CXSMICON CXVIRTUALSCREEN CXVSCROLL CYFRAME CYFULLSCREEN cygdrive CYHSCROLL CYMIN CYPADDEDBORDER CYSIZE CYSIZEFRAME CYSMICON CYVIRTUALSCREEN CYVSCROLL dai DATABLOCK DBatch dbcs DBCSFONT DBGALL DBGCHARS DBGFONTS DBGOUTPUT dbh dblclk DBUILD Dcd DColor DCOMMON DComposition DDESHARE DDevice DEADCHAR Debian debugtype DECAC DECALN DECANM DECARM DECAUPSS decawm DECBI DECBKM DECCARA DECCIR DECCKM DECCKSR DECCOLM deccra DECCTR DECDC DECDHL decdld DECDMAC DECDWL DECECM DECEKBD DECERA DECFI DECFNK decfra DECGCI DECGCR DECGNL DECGRA DECGRI DECIC DECID DECINVM DECKPAM DECKPM DECKPNM DECLRMM DECMSR DECNKM DECNRCM DECOM decommit DECPCCM DECPCTERM DECPS DECRARA decrc DECREQTPARM DECRLM DECRPM DECRQCRA DECRQDE DECRQM DECRQPSR DECRQSS DECRQTSR DECRQUPSS DECRSPS decrst DECSACE DECSASD decsc DECSCA DECSCNM DECSCPP DECSCUSR DECSDM DECSED DECSEL DECSERA DECSET DECSLPP DECSLRM DECSMKR DECSR DECST DECSTBM DECSTGLT DECSTR DECSWL DECSWT DECTABSR DECTCEM DECXCPR DEFAPP DEFAULTBACKGROUND DEFAULTFOREGROUND DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY defectdefs DEFERERASE deff DEFFACE defing DEFPUSHBUTTON defterm DELAYLOAD DELETEONRELEASE depersist deprioritized devicecode Dext DFactory DFF dialogbox DINLINE directio DIRECTX DISABLEDELAYEDEXPANSION DISABLENOSCROLL DISPLAYATTRIBUTE DISPLAYCHANGE distros dlg DLGC DLLGETVERSIONPROC dllinit dllmain DLLVERSIONINFO DLOOK DONTCARE doskey dotnet DPG DPIAPI DPICHANGE DPICHANGED DPIs dpix dpiy dpnx DRAWFRAME DRAWITEM DRAWITEMSTRUCT drcs DROPFILES drv DSBCAPS DSBLOCK DSBPLAY DSBUFFERDESC DSBVOLUME dsm dsound DSSCL DSwap DTo DTTERM DUNICODE DUNIT dup'ed dvi dwl DWLP dwm dwmapi DWORDs dwrite dxgi dxsm dxttbmp Dyreen EASTEUROPE ECH echokey ecount ECpp Edgium EDITKEYS EDITTEXT EDITUPDATE Efast efg efgh EHsc EINS ELEMENTNOTAVAILABLE EMPTYBOX enabledelayedexpansion ENDCAP endptr ENTIREBUFFER ENU ENUMLOGFONT ENUMLOGFONTEX EOB EOK EPres EQU ERASEBKGND ERRORONEXIT ESFCIB esrp ESV ETW EUDC eventing evflags evt execd executionengine exemain EXETYPE exeuwp exewin exitwin EXPUNGECOMMANDHISTORY EXSTYLE EXTENDEDEDITKEY EXTKEY EXTTEXTOUT facename FACENODE FACESIZE FAILIFTHERE fastlink fcharset fdw fesb ffd FFFD fgbg FGCOLOR FGHIJ fgidx FGs FILEDESCRIPTION FILESUBTYPE FILESYSPATH FILEW FILLATTR FILLCONSOLEOUTPUT FILTERONPASTE FINDCASE FINDDLG FINDDOWN FINDREGEX FINDSTRINGEXACT FITZPATRICK FIXEDFILEINFO Flg flyouts fmodern fmtarg fmtid FOLDERID FONTCHANGE fontdlg FONTENUMDATA FONTENUMPROC FONTFACE FONTHEIGHT fontinfo FONTOK FONTSTRING FONTTYPE FONTWIDTH FONTWINDOW foob FORCEOFFFEEDBACK FORCEONFEEDBACK FRAMECHANGED fre fsanitize Fscreen FSINFOCLASS fte Ftm Fullscreens Fullwidth FUNCTIONCALL fuzzmain fuzzmap fuzzwrapper fuzzyfinder fwdecl fwe fwlink fzf gci gcx gdi gdip gdirenderer gdnbaselines Geddy geopol GETALIAS GETALIASES GETALIASESLENGTH GETALIASEXES GETALIASEXESLENGTH GETAUTOHIDEBAREX GETCARETWIDTH GETCLIENTAREAANIMATION GETCOMMANDHISTORY GETCOMMANDHISTORYLENGTH GETCONSOLEINPUT GETCONSOLEPROCESSLIST GETCONSOLEWINDOW GETCOUNT GETCP GETCURSEL GETCURSORINFO GETDISPLAYMODE GETDISPLAYSIZE GETDLGCODE GETDPISCALEDSIZE GETFONTINFO GETHARDWARESTATE GETHUNGAPPTIMEOUT GETICON GETITEMDATA GETKEYBOARDLAYOUTNAME GETKEYSTATE GETLARGESTWINDOWSIZE GETLBTEXT GETMINMAXINFO GETMOUSEINFO GETMOUSEVANISH GETNUMBEROFFONTS GETNUMBEROFINPUTEVENTS GETOBJECT GETSELECTIONINFO getset GETTEXTLEN GETTITLE GETWAITTOKILLSERVICETIMEOUT GETWAITTOKILLTIMEOUT GETWHEELSCROLLCHARACTERS GETWHEELSCROLLCHARS GETWHEELSCROLLLINES Gfun gfx gfycat GGI GHgh GHIJK GHIJKL gitcheckin gitfilters gitlab gle GLOBALFOCUS GLYPHENTRY GMEM Goldmine gonce goutput GREENSCROLL Grehan Greyscale gridline gset gsl Guake guc GUIDATOM GValue GWL GWLP gwsz HABCDEF Hackathon HALTCOND HANGEUL hardlinks hashalg HASSTRINGS hbitmap hbm HBMMENU hbmp hbr hbrush HCmd hdc hdr HDROP hdrstop HEIGHTSCROLL hfind hfont hfontresource hglobal hhook hhx HIBYTE hicon HIDEWINDOW hinst HISTORYBUFS HISTORYNODUP HISTORYSIZE hittest HIWORD HKCU hkey hkl HKLM hlsl HMB HMK hmod hmodule hmon homoglyph hostable hostlib HPA hpcon hpen HPR HProvider HREDRAW hresult hscroll hstr HTBOTTOMLEFT HTBOTTOMRIGHT HTCAPTION HTCLIENT HTLEFT HTMAXBUTTON HTMINBUTTON HTRIGHT HTTOP HTTOPLEFT HTTOPRIGHT hungapp HVP hwheel hwnd HWNDPARENT iccex ICONERROR ICONINFORMATION ICONSTOP ICONWARNING IDCANCEL IDD IDISHWND idl idllib IDOK IDR IDTo IDXGI IFACEMETHODIMP ification IGNORELANGUAGE iid IIo ILC ILCo ILD ime IMPEXP inclusivity INCONTEXT INFOEX inheritcursor INITCOMMONCONTROLSEX INITDIALOG INITGUID INITMENU inkscape INLINEPREFIX inproc Inputkeyinfo Inputreadhandledata INPUTSCOPE INSERTMODE INTERACTIVITYBASE INTERCEPTCOPYPASTE INTERNALNAME intsafe INVALIDARG INVALIDATERECT Ioctl ipch ipsp iterm itermcolors itf Ith IUI IWIC IXP jconcpp JOBOBJECT JOBOBJECTINFOCLASS JONGSEONG JPN jsoncpp jsprovider jumplist JUNGSEONG KAttrs kawa Kazu kazum kernelbase kernelbasestaging KEYBDINPUT keychord keydowns KEYFIRST KEYLAST Keymapping keystate keyups Kickstart KILLACTIVE KILLFOCUS kinda KIYEOK KLF KLMNO KOK KPRIORITY KVM kyouhaishaheiku langid LANGUAGELIST lasterror LASTEXITCODE LAYOUTRTL lbl LBN LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP lcb lci LCONTROL LCTRL lcx LEFTALIGN libsancov libtickit LIMITTEXT LINEDOWN LINESELECTION LINEWRAP LINKERRCAP LINKERROR linputfile listptr listptrsize lld llx LMENU lnkd lnkfile LNM LOADONCALL LOBYTE localappdata locsrc Loewen LOGBRUSH LOGFONT LOGFONTA LOGFONTW logissue losslessly loword lparam lpch LPCPLINFO LPCREATESTRUCT lpcs LPCTSTR lpdata LPDBLIST lpdis LPDRAWITEMSTRUCT lpdw lpelfe lpfn LPFNADDPROPSHEETPAGE LPMEASUREITEMSTRUCT LPMINMAXINFO lpmsg LPNEWCPLINFO LPNEWCPLINFOA LPNEWCPLINFOW LPNMHDR lpntme LPPROC LPPROPSHEETPAGE LPPSHNOTIFY lprc lpstr lpsz LPTSTR LPTTFONTLIST lpv LPW LPWCH lpwfx LPWINDOWPOS lpwpos lpwstr LRESULT lsb lsconfig lstatus lstrcmp lstrcmpi LTEXT ltsc LUID luma lval LVB LVERTICAL LVT LWA LWIN lwkmvj majorly makeappx MAKEINTRESOURCE MAKEINTRESOURCEW MAKELANGID MAKELONG MAKELPARAM MAKELRESULT MAPBITMAP MAPVIRTUALKEY MAPVK MAXDIMENSTRING MAXSHORT maxval maxversiontested MAXWORD maybenull MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdmerge MDs mdtauk MEASUREITEM megamix memallocator meme MENUCHAR MENUCONTROL MENUDROPALIGNMENT MENUITEMINFO MENUSELECT metaproj Mgrs microsoftpublicsymbols midl mii MIIM milli mincore mindbogglingly minkernel MINMAXINFO minwin minwindef MMBB mmcc MMCPL MNC MNOPQ MNOPQR MODALFRAME MODERNCORE MONITORINFO MONITORINFOEXW MONITORINFOF MOUSEACTIVATE MOUSEFIRST MOUSEHWHEEL MOVESTART msb msbuildcache msctls msdata MSDL MSGCMDLINEF MSGF MSGFILTER MSGFLG MSGMARKMODE MSGSCROLLMODE MSGSELECTMODE msiexec MSIL msix MSRC MSVCRTD MTSM murmurhash muxes myapplet mybranch mydir Mypair Myval NAMELENGTH namestream NCCALCSIZE NCCREATE NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDOWN NCMBUTTONUP NCPAINT NCRBUTTONDOWN NCRBUTTONUP NCXBUTTONDOWN NCXBUTTONUP NEL nerf nerror netcoreapp netstandard NEWCPLINFO NEWCPLINFOA NEWCPLINFOW Newdelete NEWINQUIRE NEWINQURE NEWPROCESSWINDOW NEWTEXTMETRIC NEWTEXTMETRICEX Newtonsoft NEXTLINE nfe NLSMODE NOACTIVATE NOAPPLYNOW NOCLIP NOCOMM NOCONTEXTHELP NOCOPYBITS NODUP noexcepts NOFONT NOHIDDENTEXT NOINTEGRALHEIGHT NOINTERFACE NOLINKINFO nologo NOMCX NOMINMAX NOMOVE NONALERT nonbreaking nonclient NONINFRINGEMENT NONPREROTATED nonspace NOOWNERZORDER NOPAINT noprofile NOREDRAW NOREMOVE NOREPOSITION NORMALDISPLAY NOSCRATCH NOSEARCH noselect NOSELECTION NOSENDCHANGING NOSIZE NOSNAPSHOT NOTHOUSANDS NOTICKS NOTIMEOUTIFNOTHUNG NOTIMPL NOTOPMOST NOTRACK NOTSUPPORTED nouicompat nounihan NOYIELD NOZORDER NPFS nrcs NSTATUS ntapi ntdef NTDEV ntdll ntifs ntm ntstatus nttree ntuser NTVDM nugetversions NUKTA nullness nullonfailure nullopts NUMSCROLL NUnit nupkg NVIDIA NVT OACR ocolor oemcp OEMFONT OEMFORMAT OEMs OLEAUT OLECHAR onebranch onecore ONECOREBASE ONECORESDKTOOLS ONECORESHELL onecoreuap onecoreuapuuid onecoreuuid ONECOREWINDOWS onehalf oneseq oob openbash opencode opencon openconsole openconsoleproxy openps openvt ORIGINALFILENAME osc OSDEPENDSROOT OSGENG outdir OUTOFCONTEXT Outptr outstr OVERLAPPEDWINDOW OWNDC owneralias OWNERDRAWFIXED packagename packageuwp PACKAGEVERSIONNUMBER PACKCOORD PACKVERSION pacp pagedown pageup PAINTPARAMS PAINTSTRUCT PALPC pankaj parentable PATCOPY PATTERNID pbstr pcb pcch PCCHAR PCCONSOLE PCD pcg pch PCIDLIST PCIS PCLONG pcon PCONSOLE PCONSOLEENDTASK PCONSOLESETFOREGROUND PCONSOLEWINDOWOWNER pcoord pcshell PCSHORT PCSR PCSTR PCWCH PCWCHAR PCWSTR pdbs pdbstr pdcs PDPs pdtobj pdw pdx peb PEMAGIC pfa PFACENODE pfed pfi PFILE pfn PFNCONSOLECREATEIOTHREAD PFONT PFONTENUMDATA PFS pgd pgomgr PGONu pguid phhook phico phicon phwnd pidl PIDLIST pii piml pimpl pinvoke pipename pipestr pixelheight PIXELSLIST PJOBOBJECT platforming playsound ploc ploca plocm PLOGICAL pnm PNMLINK pntm POBJECT Podcast POINTERUPDATE POINTSLIST policheck POLYTEXTW POPUPATTR popups PORFLG POSTCHARBREAKS POSX POSXSCROLL POSYSCROLL ppbstr PPEB ppf ppidl pprg PPROC ppropvar ppsi ppsl ppsp ppsz ppv ppwch PQRST prc prealigned prect prefast preflighting prepopulate presorted PREVENTPINNING PREVIEWLABEL PREVIEWWINDOW PREVLINE prg pri processhost PROCESSINFOCLASS PRODEXT PROPERTYID PROPERTYKEY propertyval propsheet PROPSHEETHEADER PROPSHEETPAGE propslib propsys PROPTITLE propvar propvariant psa PSECURITY pseudoconsole psh pshn PSHNOTIFY PSINGLE psl psldl PSNRET PSobject psp PSPCB psr PSTR psz ptch ptsz PTYIn PUCHAR pvar pwch PWDDMCONSOLECONTEXT Pwease pweview pws pwstr pwsz pythonw Qaabbcc QUERYOPEN quickedit QUZ QWER qwerty qwertyuiopasdfg Qxxxxxxxxxxxxxxx qzmp RAII RALT rasterbar rasterfont rasterization RAWPATH raytracers razzlerc rbar RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rcch rcelms rclsid RCOA RCOCA RCOCW RCONTROL RCOW rcv readback READCONSOLE READCONSOLEOUTPUT READCONSOLEOUTPUTSTRING READMODE rectread redef redefinable redist REDSCROLL REFCLSID REFGUID REFIID REFPROPERTYKEY REGISTEROS REGISTERVDM regkey REGSTR RELBINPATH rendersize reparented reparenting REPH replatformed Replymessage reportfileaccesses repositorypath rerasterize rescap RESETCONTENT resheader resmimetype resultmacros resw resx rfa rfid rftp rgbi RGBQUAD rgbs rgfae rgfte rgn rgp rgpwsz rgrc rguid rgw RIGHTALIGN RIGHTBUTTON riid ris robomac rodata rosetta RRF RRRGGGBB rsas rtcore RTEXT RTLREADING Rtn runas RUNDLL runformat runft RUNFULLSCREEN runfuzz runsettings runtest runtimeclass runuia runut runxamlformat RVERTICAL rvpa RWIN rxvt safemath sba SBCS SBCSDBCS sbi sbiex scancodes scanline schemename SCL SCRBUF SCRBUFSIZE screenbuffer SCREENBUFFERINFO screeninfo scriptload scrollback SCROLLFORWARD SCROLLINFO scrolllock scrolloffset SCROLLSCALE SCROLLSCREENBUFFER scursor sddl SDKDDK segfault SELCHANGE SELECTEDFONT SELECTSTRING Selfhosters Serbo SERVERDLL SETACTIVE SETBUDDYINT setcp SETCURSEL SETCURSOR SETCURSORINFO SETCURSORPOSITION SETDISPLAYMODE SETFOCUS SETFOREGROUND SETHARDWARESTATE SETHOTKEY SETICON setintegritylevel SETITEMDATA SETITEMHEIGHT SETKEYSHORTCUTS SETMENUCLOSE SETNUMBEROFCOMMANDS SETOS SETPALETTE SETRANGE SETSCREENBUFFERSIZE SETSEL SETTEXTATTRIBUTE SETTINGCHANGE setvariable Setwindow SETWINDOWINFO SFGAO SFGAOF sfi SFINAE SFolder SFUI sgr SHCo shcore shellex SHFILEINFO SHGFI SHIFTJIS shlwapi SHORTPATH SHOWCURSOR SHOWDEFAULT SHOWMAXIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW sidebyside SIF SIGDN Signtool SINGLETHREADED siup sixel SIZEBOX SIZESCROLL SKIPFONT SKIPOWNPROCESS SKIPOWNTHREAD sku sldl SLGP SLIST slmult sln slpit SManifest SMARTQUOTE SMTO snapcx snapcy snk SOLIDBOX Solutiondir sourced SRCAND SRCCODEPAGE SRCCOPY SRCINVERT SRCPAINT srcsrv SRCSRVTRG srctool srect SRGS srvinit srvpipe ssa startdir STARTF STARTUPINFO STARTUPINFOEX STARTUPINFOEXW STARTUPINFOW STARTWPARMS STARTWPARMSA STARTWPARMSW stdafx STDAPI stdc stdcpp STDEXT STDMETHODCALLTYPE STDMETHODIMP STGM STRINGTABLE STRSAFE STUBHEAD STUVWX stylecop SUA subcompartment subkeys SUBLANG swapchain swapchainpanel SWMR SWP swrapped SYMED SYNCPAINT syscalls SYSCHAR SYSCOLOR SYSCOMMAND SYSDEADCHAR SYSKEYDOWN SYSKEYUP SYSLIB SYSLINK SYSMENU sysparams SYSTEMHAND SYSTEMMENU SYSTEMTIME tabview taef TARG targetentrypoint TARGETLIBS TARGETNAME targetver tbc tbi Tbl TBM TCHAR TCHFORMAT TCI tcommands tdbuild Tdd TDP Teb Techo tellp teraflop terminalcore terminalinput terminalrenderdata TERMINALSCROLLING terminfo testcon testd testenvs testlab testlist testmd testname TESTNULL testpass testpasses TEXCOORD textattribute TEXTATTRIBUTEID textboxes textbuffer TEXTINCLUDE textinfo TEXTMETRIC TEXTMETRICW textmode texttests THUMBPOSITION THUMBTRACK tilunittests titlebars TITLEISLINKNAME TLDP TLEN TMAE TMPF tmultiple tofrom toolbars TOOLINFO TOOLWINDOW TOPDOWNDIB tosign tracelogging traceviewpp trackbar trackpad transitioning Trd TRIMZEROHEADINGS trx tsa tsgr tsm TSTRFORMAT TTBITMAP TTFONT TTFONTLIST TTM TTo tvpp tvtseq TYUI uap uapadmin UAX UBool ucd uch UChars udk uer UError uia UIACCESS uiacore uiautomationcore uielem UINTs uld uldash uldb ulwave Unadvise unattend UNCPRIORITY unexpand unhighlighting unhosted UNICODETEXT UNICRT Unintense unittesting unittests unk unknwn UNORM unparseable untextured UPDATEDISPLAY UPDOWN UPKEY upss uregex URegular usebackq USECALLBACK USECOLOR USECOUNTCHARS USEDEFAULT USEDX USEFILLATTRIBUTE USEGLYPHCHARS USEHICON USEPOSITION userdpiapi Userp userprivapi USERSRV USESHOWWINDOW USESIZE USESTDHANDLES usp USRDLL utext utr UVWXY uwa uwp uwu uxtheme Vanara vararg vclib vcxitems VERCTRL VERTBAR VFT vga vgaoem viewkind VIRAMA Virt VIRTTERM visualstudiosdk vkey VKKEYSCAN VMs VPA vpack vpackdirectory VPACKMANIFESTDIRECTORY VPR VREDRAW vsc vsconfig vscprintf VSCROLL vsdevshell vse vsinfo vsinstalldir vso vspath VSTAMP vstest VSTT vswhere vtapp VTE VTID vtmode vtpipeterm VTRGB VTRGBTo vtseq vtterm vttest WANSUNG WANTARROWS WANTTAB wapproj WAVEFORMATEX wbuilder wch wchars WCIA WCIW wcs WCSHELPER wcsrev wcswidth wddm wddmcon WDDMCONSOLECONTEXT wdm webpage websites wekyb wewoad wex wextest WFill wfopen WHelper wic WIDTHSCROLL Widthx Wiggum WImpl WINAPI winbasep wincon winconp winconpty winconptydll winconptylib wincontypes WINCORE windbg WINDEF windir windll WINDOWALPHA windowdpiapi WINDOWEDGE WINDOWINFO windowio WINDOWPLACEMENT windowpos WINDOWPOSCHANGED WINDOWPOSCHANGING windowproc windowrect windowsapp WINDOWSIZE windowsshell windowsterminal windowtheme winevent winget wingetcreate WINIDE winmd winmgr winmm WINMSAPP winnt Winperf WInplace winres winrt winternl winui winuser WINVER wistd wmain WMSZ wnd WNDALLOC WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW Wndproc WNegative WNull wordi wordiswrapped workarea WOutside WOWARM WOWx wparam WPartial wpf wpfdotnet WPR WPrep WPresent wprp wprpi wrappe wregex writeback WRITECONSOLE WRITECONSOLEINPUT WRITECONSOLEOUTPUT WRITECONSOLEOUTPUTSTRING wrkstr WRL wrp WRunoff WSLENV wstr wstrings wsz wtd WTest WTEXT WTo wtof WTs WTSOFTFONT wtw Wtypes WUX WVerify WWith wxh wyhash wymix wyr xact Xamlmeta xamls xaz xbf xbutton XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XCast XCENTER xcopy XCount xdy XEncoding xes XFG XFile XFORM XIn xkcd XManifest XMath XNamespace xorg XPan XResource xsi xstyler XSubstantial XTest XTPOPSGR XTPUSHSGR xtr XTWINOPS xunit xutr XVIRTUALSCREEN yact YCast YCENTER YCount yizz YLimit YPan YSubstantial YVIRTUALSCREEN zabcd Zabcdefghijklmn Zabcdefghijklmnopqrstuvwxyz ZCmd ZCtrl ZWJs ZYXWVU ZYXWVUT ZYXWVUTd zzf

Some files were automatically ignored 🙈

These sample patterns would exclude them:

[^/]\.py$
^Dockerfile$

You should consider excluding directory paths (e.g. (?:^|/)vendor/), filenames (e.g. (?:^|/)yarn\.lock$), or file extensions (e.g. \.gz$)

You should consider adding them to:

.github/actions/spelling/excludes.txt

File matching is via Perl regular expressions.

To check these files, more of their words need to be in the dictionary than not. You can use patterns.txt to exclude portions, add items to the dictionary (e.g. by adding them to allow.txt), or fix typos.

To accept these unrecognized words as correct, update file exclusions, and remove the previously acknowledged and now absent words, you could run the following commands

... in a clone of the git@github.com:SoftwareDevLabs/frontend.git repository
on the development branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.25/apply.pl' |
perl - 'https://github.com/SoftwareDevLabs/frontend/actions/runs/28904320333/attempts/1' &&
git commit -m 'Update check-spelling metadata'

OR

To have the bot accept them for you, comment in the PR quoting the following line:
@check-spelling-bot apply updates.

Forbidden patterns 🙅 (1)

In order to address this, you could change the content to not match the forbidden patterns (comments before forbidden patterns may help explain why they're forbidden), add patterns for acceptable instances, or adjust the forbidden patterns themselves.

These forbidden patterns matched content:

Should be socioeconomic

https://dictionary.cambridge.org/us/dictionary/english/socioeconomic

socio-economic
Pattern suggestions ✂️ (5)

You could add these patterns to .github/actions/spelling/patterns/a9a612504001954db4f697e053c9d325dbd56a25.txt:

# Automatically suggested patterns

# hit-count: 7 file-count: 1
# URL escaped characters
%[0-9A-F][A-F](?=[A-Za-z])

# hit-count: 2 file-count: 2
# imports
^import\s+(?:(?:static|type)\s+|)(?:[\w.]|\{\s*\w*?(?:,\s*(?:\w*|\*))+\s*\})+

# hit-count: 2 file-count: 2
# JavaScript regular expressions
# javascript test regex
/.{3,}/[gim]*\.test\(

# hit-count: 1 file-count: 1
# GitHub actions
\buses:\s+[-\w.]+/[-\w./]+@[-\w.]+

# hit-count: 1 file-count: 1
# go install
go install(?:\s+[a-z]+\.[-@\w/.]+)+

Alternatively, if a pattern suggestion doesn't make sense for this project, add a #
to the beginning of the line in the candidates file with the pattern to stop suggesting it.

Errors, Warnings, and Notices ❌ (4)

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors, Warnings, and Notices Count
⚠️ binary-file 14
ℹ️ candidate-pattern 7
❌ check-file-path 9
❌ forbidden-pattern 1

See ❌ Event descriptions for more information.

✏️ Contributor please read this

By default the command suggestion will generate a file named based on your commit. That's generally ok as long as you add the file to your commit. Someone can reorganize it later.

If the listed items are:

  • ... misspelled, then please correct them instead of using the command.
  • ... names, please add them to .github/actions/spelling/allow/names.txt.
  • ... APIs, you can add them to a file in .github/actions/spelling/allow/.
  • ... just things you're using, please add them to an appropriate file in .github/actions/spelling/expect/.
  • ... tokens you only need in one place and shouldn't generally be used, you can add an item in an appropriate file in .github/actions/spelling/patterns/.

See the README.md in each directory for more information.

🔬 You can test your commits without appending to a PR by creating a new branch with that extra change and pushing it to your fork. The check-spelling action will run in response to your push -- it doesn't require an open pull request. By using such a branch, you can limit the number of typos your peers see you make. 😉

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants