codinget
  • Joined on 2022-10-19
codinget pushed to t3code/e17a1190 at webnet/webnet 2026-07-11 14:38:28 +02:00
cca5e974cf docs(agents): clarify npm workspace structure
codinget deleted branch docs/model-attribution from webnet/webnet 2026-07-11 01:44:24 +02:00
codinget pushed to main at webnet/webnet 2026-07-11 01:44:24 +02:00
97b78f6b61 docs(agents): require exact model attribution
codinget merged pull request webnet/webnet#66 2026-07-11 01:44:22 +02:00
docs(agents): require exact model attribution
codinget pushed to docs/model-attribution at webnet/webnet 2026-07-11 01:32:05 +02:00
97b78f6b61 docs(agents): require exact model attribution
codinget pushed to docs/model-attribution at webnet/webnet 2026-07-11 01:20:09 +02:00
6e72452abc docs(agents): require exact model attribution
codinget created pull request webnet/webnet#66 2026-07-11 01:09:24 +02:00
WIP: docs(agents): require exact model attribution
codinget pushed to docs/model-attribution at webnet/webnet 2026-07-11 01:09:08 +02:00
0fdac3db16 docs(agents): require exact model attribution
codinget created branch docs/model-attribution in webnet/webnet 2026-07-11 01:09:08 +02:00
codinget commented on pull request webnet/webnet#65 2026-07-11 00:58:04 +02:00
feat(ssh): split SSH out of @webnet/sftp into @webnet/ssh + TCP forwarding

Thanks — all confirmed against the code and fixed in dda4a64 (CI green). Summary:

codinget pushed to feat/ssh-package at webnet/webnet 2026-07-11 00:48:52 +02:00
dda4a64f1d fix(ssh): address second-round review (send deadlock, pipe DoS, connect leaks)
codinget commented on pull request webnet/webnet#65 2026-07-11 00:19:31 +02:00
feat(ssh): split SSH out of @webnet/sftp into @webnet/ssh + TCP forwarding

Reviewed autonomously by GPT-5. I reviewed this stacked PR against feat/sftp, focusing on the package split, generic authentication boundary, channel-open/global-request ordering, direct and remote forwarding lifecycle, transport adaptation, and SFTP integration changes. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#64 2026-07-11 00:19:31 +02:00
feat: add @webnet/sftp package (SFTP v3 client and server)

Reviewed autonomously by GPT-5. I inspected SSH packet framing/KEX/authentication and channel flow control, SFTP request dispatch and handle lifecycle, streaming reads/writes, server error containment, and interoperability-oriented edge cases. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#63 2026-07-11 00:19:30 +02:00
feat(transport): add explicit TLS upgrade (STARTTLS / AUTH TLS) to RawTransport

Reviewed autonomously by GPT-5. I inspected the RawTransport API contract, Node socket-to-TLS handoff (including buffered ClientHello handling), tsconnect handle replacement, worker protocol propagation, concurrency guards, and failure/close semantics. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#61 2026-07-11 00:19:29 +02:00
feat: add @webnet/ftp package (FTP/FTPS client and server)

Reviewed autonomously by GPT-5. I inspected FTP control serialization, passive data-channel lifecycle, transfer stream cancellation/cleanup, reply mapping, path handling, and server session state transitions. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#60 2026-07-11 00:19:28 +02:00
feat(smb2): SMB2/3 client with async VFS interface

Reviewed autonomously by GPT-5. I inspected SMB negotiation/authentication, signing and response verification, credit/framing behavior, VFS operation mapping, stream cleanup, and the mock/integration coverage. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#55 2026-07-11 00:19:26 +02:00
feat(tailshare): SharedWorker support, config consolidation, and fileOps UI

Reviewed autonomously by GPT-5. I inspected the SharedWorker/main-thread lifecycle, configuration persistence and restart semantics, store switching, autostart behavior, and UI capability guards. CI is passing, and I found no blocking correctness issues in this change.

codinget commented on pull request webnet/webnet#65 2026-07-11 00:02:11 +02:00
feat(ssh): split SSH out of @webnet/sftp into @webnet/ssh + TCP forwarding

If the accept loop has already exited (#failSessions ran), a waiter pushed here never settles — unlike ConnectionMux.acceptOpen, there's no error-state check. The in-repo sftp caller happens to call this immediately after accept(), but any public-API user calling acceptSession() on a dead connection hangs forever. Storing the loop-exit error and rejecting here would match the mux behaviour.

codinget commented on pull request webnet/webnet#65 2026-07-11 00:02:11 +02:00
feat(ssh): split SSH out of @webnet/sftp into @webnet/ssh + TCP forwarding

A second tcpip-forward for the same bindHost:port overwrites the map entry, orphaning the previous listener and its #forwardAccept loop (never closed, even by close()). Rejecting the duplicate (return null) or closing the old listener first would avoid the leak. Related nit: RemoteForward.close()/_shutdown drop #queue without closing the queued transports, leaving those accepted channels dangling.

codinget commented on pull request webnet/webnet#65 2026-07-11 00:02:11 +02:00
feat(ssh): split SSH out of @webnet/sftp into @webnet/ssh + TCP forwarding

The comment says "unique port match" but this returns the first forward with a matching port. With two forwards on the same port on different hosts (the exact scenario the "two forwards sharing a port" test exercises via exact-match), a server that reports the bound host differently than requested (the OpenSSH behaviour this fallback exists for) can get its connections routed to the wrong forward. Making the fallback apply only when exactly one forward has that port would fail closed (reject) instead of misrouting.