Zach Blume

Results 25 comments of Zach Blume

https://docs.sweep.dev/blogs/super-linter This is a good discussion of cross-language linting in a code generation agent

Three config files that rely on `flake8` to produce either a file or snippit lint output: - https://github.com/princeton-nlp/SWE-agent/blob/68760dcaf66c4ec7937f23e2780af11ab8ba99d7/config/commands/cursors_edit_linting.sh#L40 - https://github.com/princeton-nlp/SWE-agent/blob/68760dcaf66c4ec7937f23e2780af11ab8ba99d7/config/commands/edit_linting.sh#L72 - https://github.com/princeton-nlp/SWE-agent/blob/68760dcaf66c4ec7937f23e2780af11ab8ba99d7/config/commands/_split_string.py#L4 Additionally flake8 is installed (inside the agent docker...

``` workflow_dispatch: inputs: issueNumber: description: 'Issue Number' required: true type: integer ``` Let people kick it off for past issues

Sounds good. I think I'm done for tonight, I just got it working as a proof of concept with the defaults pointing at one of the snippits you all named...

Happy to keep cranking on this but would prefer others thoughts first to not go down the wrong road. ``` cd app npm i open 'http://localhost:3000' npm run dev ```...

That makes sense -- I won't be able to get anything done in the next few days, but I can plan to rework my PR this weekend (?) to be...

Giving that a try, I did: ``` const supabase = createClient( process.env.NEXT_PUBLIC_SUPABASE_URL, process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY, { global: { headers: { Authorization: `Bearer ${supabaseAccessToken}` }, }, realtime: { headers: { apikey: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY, },...

The token I'm using from Clerk.dev: ``` eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.... ``` Using jwt.io looks like this: ``` { "alg": "HS256", "typ": "JWT" } PAYLOAD { "app_metadata": {}, "aud": "authenticated", "azp": "http://localhost:3000", "email":...

If I switch out all the keys for the anon key: ``` eyJhb... { "alg": "HS256", "typ": "JWT" } PAYLOAD { "iss": "supabase-demo", "role": "anon", "exp": 1983812996 } ``` Then...

Looks like the same problem here: ``` @w3b6x9 Got it. Also https://supabase.com/docs/guides/realtime/postgres-changes#custom-tokens, this doesn't fix this. In fact, it throws a web-socket connection error when we use any key other...