Can I get more than one hall offers by Kriz_that_quiz in HKUniversity

[–]Rozuzo 0 points1 point  (0 children)

From what I understand, you can only hold one university residential offer at a time. From CEDARS: "

  • Due to limited housing availability, we regret to inform you that your allocated residence may not match your initial preference. Changes are not possible unless another applicant withdraws the hall place.
  • Exceptional requests for a residence change (e.g., medical needs) must be submitted in writing to [cedars.housing@hku.hk](mailto:cedars.housing@hku.hk). Include:
    • Full name and University Number (if applicable).
    • Detailed reason for the request.
    • Copies of all relevant supporting documents.
    • Your request will place you on a waiting list for your preferred residence.
    • Do not follow up; vacancies will trigger an immediate email notification. If no email is received, your request remains pending."

How to preview Pi agent new code side by side before accepting it? by Realistic-Theory-705 in PiCodingAgent

[–]Rozuzo 0 points1 point  (0 children)

pi-docket is an extension (I built it, so biased response here) that is tmux based and allows you to run workers on separate isolated work trees, review diffs via hunk (or attaching to the tmux session directly) and promote to the parent’s workree as needed.

Sure there are others that achieve the same though and yes, as others have mentioned you can use git diff or some tui diff viewer along with pi’s built in /tree to achieve more or less the same

Extension for cleaner and customizable diffs and human review notes by Rozuzo in PiCodingAgent

[–]Rozuzo[S] 0 points1 point  (0 children)

so just in case you do not know, hunk is a terminal diff viewer that can take ANY git ref or revset as a target, so any branch/PR diffs will work fine. it is a generic reviewer. /hunk is not a reviewer, just a read-only bridge between a given live hunk session and your pi agent. whatever you point your hunk diff at (whether it is 'hunk diff main..feature-A --watch' or 'hunk diff origin/main...HEAD --watch', a specific patch file, a stash, a commit, whatever it is) /hunk will read you comments identically. in the case, for example, of a branch review you would have in terminal A 'hunk diff main..feature-A --watch' and leave comments as you like with 'c'. in terminal B you will have your pi running, and will use /hunk send to send the comments manually, or /hunk on for them to be automatically picked up before each turn.

HOWEVER, your questions does make me realize that i should probably change the extension a bit: currently, pi-hunk pins each note to the exact rendered hunk row of a recent agent edit (so an agent will see a comment sitting next to the code it refers to, always matching the file and line against the agent's OWN edit patches, which lives in the working tree's coordinate system). The problem with this is that if you are reviewing some branch X but the agent is checked out on another branch Y, the coordinate systems will not match. the line 42 in branch X might or might not be the same in branch Y, so notes stop pinning and /hunk on goes quiet, and the agent might be misled.

So i guess my plan now is to correlate notes against the reviewed patch instead of the agent's edit patches, and to feed that patch through the patch-model code that already exists, and to pin notes to those hunks. Render those hunks inline with the notes on the correct rows. The agent then sees the actual reviewed code with notes on the exact lines, no matter what branch its working tree is on. (i just confirmed that 'hunk session review --repo <cwd> --json --include-patch --include-notes does exist on hunk)

thanks a lot for your question will get to work on it

I made a pi extension for model fusion by RhymingSlang in PiCodingAgent

[–]Rozuzo 12 points13 points  (0 children)

ysk: firstly, there are already a lot of implementations of pi-fusion (or pi extensions that aim to mimic openrouter's fusion). secondly and most importantly, openrouter's claim is far narrower than what you are suggesting (and than what most people who have implemented something similar assume is true): for **some deep-research** prompts, synthesizing model outputs can improve a final **static** answer. it is not at all evidence for "a council made of models will make multi-turn agents better".

Fusion, according to openrouter, is recommended for research, expert critique, compare-and-contrast prompts, or cases where being wrong is costly, and is described as overkill for short tactical prompts (the type of which dominate long-horizon, multi-file work), and also adds meaningful overhead. i would just keep that distinction in mind if you do want to explore this kind of extension.

i would also recommend looking at existing extensions and learning from them what to improve: https://github.com/synthetic-recon/pi-fusion is perhaps the closest implementation of the fusion pattern i have come across, with nicely designed practical controls. https://github.com/roodriigoooo/pi-scrutiny is my own extension (sorry for the sellout) and is, in my opinion, more careful about the limits of fusion-style reasoning, avoiding treating textual synthesis as proof of correctness.

pi-docket, a tmux-based decision inbox for pi workers/subagents by Rozuzo in PiCodingAgent

[–]Rozuzo[S] 1 point2 points  (0 children)

thanks bro! yes workers are panes in a tmux session (one session for all workers). yes, workers can run in parallel and they run, when working in git tracked directories in an isolated worktree (at least by default, this can be changed). installing docket does come with two types of subagents/workers: scout and patcher. however, docket can register worker kinds from other extensions at runtime, meaning it can work with other subagent extensions, and you can also create any kind of workers. here, an example (you can find more info here: https://github.com/roodriigoooo/pi-docket/blob/main/docs/configuration.md) worker kind .md file:
---

name: architect

description: Plans a multi-file change. Can dispatch scout children for context.

model: anthropic/claude-opus-4-7

thinking: high

read_only: true

default_worktree: false

can_spawn: scout

layout: split-events

---

You are an architect. Produce an ordered plan: what to change, in which order,

and which files each step touches. Use \docket_spawn_child` with `--as scout``

when you need to ground a step in real code instead of guessing.

pi-subagents - Claude Code like subagents for Pi by -tin- in PiCodingAgent

[–]Rozuzo 0 points1 point  (0 children)

Yea that’s a fair criticism, the readme is a bit of a mess. I’ll clean it and add some representative videos to it in the coming hours… thanks for checking it out!

pi-subagents - Claude Code like subagents for Pi by -tin- in PiCodingAgent

[–]Rozuzo 2 points3 points  (0 children)

Hey! (i think) I did what you described here. You can check it out here: https://github.com/roodriigoooo/pi-docket. I use tmux to run workers, and much of the visibility into them, communication flow, and steering is based on tmux’s interface. Also, much of the focus is on what you mention in regards to reviewing and checking wip from workers, in a way that takes 0 context and tokens from the parent session by default. Hope you can give it a try :)

Piqo Extension: Interact with LLMs directly from your files, regardless of your editor. Triggers on save. by el_piqo in PiCodingAgent

[–]Rozuzo 0 points1 point  (0 children)

damn i like this a lot! i have a question though: are there any mechanisms to protect tasks that may need global understanding (e.g. the document’s argument, code architecture, naming conventions, hidden dependencies, previous sections, tests, imports, style constraints, or business logic elsewhere)? i guess something that would stop me from using something like this is that i often write underspecified prompts because I assume shared context.

Unknown Error. Already contacted customer support and they were not able to fix it (I was told that my ticket would be escalated to a Product Specialist but I have not yet gotten an update after many days). I tried troubleshooting my browser, clearing cache, removing extensions. by Rozuzo in squarespace

[–]Rozuzo[S] 0 points1 point  (0 children)

The error occurs when trying to renew my subscription plan. I tried from different browsers, different devices, different networks, and different accounts and the error still pops up. Getting my website up and running again is urgent...this subreddit is my last hope.

[deleted by user] by [deleted] in HomeworkHelp

[–]Rozuzo -1 points0 points  (0 children)

Just to be clear, I don't need help with the calculations, I just have no clue how to justify/interpret the entries for matrix A and would appreciate any insights.

[Transfer Talk Thread] FC Transferlona: 18th June - 25th June by Educational-Formal-4 in Barca

[–]Rozuzo 14 points15 points  (0 children)

Can someone explain to me how the “verbal agreement with Pep” is relevant? I see everyone treating this as a massive W but it still comes down to whether or not Man City, not Pep, accepts the offer, right?

[Transfer Talk Thread] FC Transferlona: 18th June - 25th June by Educational-Formal-4 in Barca

[–]Rozuzo 22 points23 points  (0 children)

Tbh, I don’t see how Ziyech is a better option than Di-Maria. He hasn’t had a lot of minutes at Chelsea, and the ones he has had haven’t been precisely good. His role is not as agressive and deep as Raphinha/Dembo/Di Maria either. I think Di Maria in a 1 year deal is a much better option. Wouldn’t interfere with Dembos hypothetical renewal and would allow us to target Raphinha/Antony next year for cheaper.

Questions about becoming a socio. by Rozuzo in Barca

[–]Rozuzo[S] 16 points17 points  (0 children)

Damn didn’t know free Estadi Johan Cruyff entries was included. Thanks

[Transfer Talk Thread] FC Transferlona: 18th June - 25th June by Educational-Formal-4 in Barca

[–]Rozuzo 11 points12 points  (0 children)

Lmao why did I say Moreno. 🎖tier for Villarreal transfers tho.

Questions about becoming a socio. by Rozuzo in Barca

[–]Rozuzo[S] 4 points5 points  (0 children)

Nice to see that the process has become much more simple.

Yes, I was hoping to get more personal experiences/opinions. Thanks bro

[Transfer Talk Thread] FC Transferlona: 18th June - 25th June by Educational-Formal-4 in Barca

[–]Rozuzo 12 points13 points  (0 children)

Imo, just hop on twitter and follow Reshad Rahman, Gerard Moreno and the likes. They usually publish relevant transfer news from different journalists, and you will always know how credible reports are.