GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by jonny (good kind) (jonny@neuromatch.social)

  1. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:36 JST jonny (good kind) jonny (good kind)
    in reply to

    let me just flip my "play more notes" switch real quick

    In conversation about 4 hours ago from neuromatch.social permalink
  2. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:36 JST jonny (good kind) jonny (good kind)

    learning the accordion is forcing me to come to grips with how absolute pitch doesnt matter and is fake and you can just play in any octave and why not chuck some others in there too

    In conversation about 4 hours ago from neuromatch.social permalink
  3. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:35 JST jonny (good kind) jonny (good kind)
    in reply to

    having the fourth finger be the dominant finger in the left hand is weird

    In conversation about 4 hours ago from gnusocial.jp permalink
  4. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:34 JST jonny (good kind) jonny (good kind)
    in reply to

    in general fuck the pinky, and while we're at it the thumb too

    In conversation about 4 hours ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/429/216/669/261/278/original/6ab0d432e0d9c734.png
  5. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:33 JST jonny (good kind) jonny (good kind)
    in reply to

    the stradella bass is amazing and gaining the intuition of music being 'to make the sound do this, skip n rows and m columns away, from anywhere' is awesome.

    In conversation about 4 hours ago from neuromatch.social permalink
  6. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Sunday, 19-Apr-2026 16:10:33 JST jonny (good kind) jonny (good kind)
    in reply to

    my question from last time of 'how do you find the notes when you cant see anything was answered with 'put some wax on it'

    In conversation about 4 hours ago from gnusocial.jp permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/429/242/953/876/238/original/d440fa3ce758ef4b.png
  7. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Friday, 17-Apr-2026 01:45:32 JST jonny (good kind) jonny (good kind)

    the real skill with no curriculum is not "how to use consumer AI slot machines to get high on stolen valor" but actually "how to defend your code against the roving horde of opportunistic PR agents"

    In conversation about 3 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/413/232/512/643/123/original/7bd24b262b312c1e.png
  8. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Friday, 17-Apr-2026 01:45:31 JST jonny (good kind) jonny (good kind)
    in reply to

    i need to write a paper about how the LLM turned what should have been a 1ksloc package written in a few weeks of having fun thinking about an interesting problem into a 6 month slog trimming a 10ksloc explosion of slop back down to 1ksloc package in one of the more mind numbing grinds i've ever done.

    In conversation about 3 days ago from neuromatch.social permalink
  9. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:21 JST jonny (good kind) jonny (good kind)
    in reply to

    transitioning into longform mode, brb, thread will slow. going to try and have this out in a week but i'm gonna try and land this one

    In conversation about 5 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/356/475/274/827/190/original/43164c4e47197896.png
  10. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:20 JST jonny (good kind) jonny (good kind)
    in reply to

    Say you wanted to introduce a new feature, like say an always-on assistant like OpenClaw. How much of the existing code should you have to touch? Probably not much, right? Like all that is is just a set of cron tasks and an event listener that should feed into the normal prompt loop. So like, probably wouldn't need to touch much at all except the terminal i/o parts, that should basically be a wrapper.

    How about.. one hundred and forty eight times? That's the number of feature('KAIROS') flags exist in claude code. Note that those are only the parts that were marked for explicit removal in the compiled code (but left in in the sourcemap). That feature is also known as "proactive" and "assistant" elsewhere in the code, and has a number of other related feature flags. This DOES NOT include any of the actual KAIROS code, as the relevant modules were excluded by tree shaking.

    Many of them are annotated with LLM comments explaining how "the rest of the shit if broken so we need to do this here" - like for example you'd expect there to be some global way for claude code to declare "we are not in an interactive mode so you can't do interactive things" like ask the user a question. And there are. dozens of them. but none of them really work.

    Don't worry, all these changes only create dozens of alternative pathways to check permissions, modify the entire way the system prompt is declared, user input is handled, and so on.

    In conversation about 5 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/401/856/993/722/781/original/6133ca1933facd20.png

    2. https://media.neuromatch.social/media_attachments/files/116/401/857/171/604/277/original/1cc277ddf9f6e710.png
  11. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:20 JST jonny (good kind) jonny (good kind)
    in reply to

    So I think this bears repeating:

    https://neuromatch.social/@jonny/116388666325458566

    The way that Claude code differentiates human written messages from LLM written messages within the "user message" type (yes, user message does not necessarily mean messages from the user) is that some "origin" property is undefined .

    Some of the types were stripped out in the sourceMap, so the MessageOrigin type is missing, but we do have the comment in the image.

    So yeah, if something goes wrong in the labyrinth of Claude code that causes this to be undefined, treating messages as if they came from the user is the fallback.

    Which is one of hundreds of possible explanations for why Claude code was able to autonomously scrap some expensive thing like in the posts upthread of the quoted post.

    In conversation about 5 days ago from gnusocial.jp permalink

    Attachments



    1. https://media.neuromatch.social/media_attachments/files/116/388/698/773/333/326/original/d80bf286520831c0.jpg
  12. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:19 JST jonny (good kind) jonny (good kind)
    in reply to

    What about the ways that claude code checks for whether KAIROS is enabled? well look no further than

    • getKairosActive() / STATE.kairosActive / context.getAppState().kairosEnabled
    • kairosGate / kairosGate.isKairosEnabled()
    • isKairosCronEnabled()
    • options.assistant? (and all variants of being passed whatever the caller's interpretation of active is)
    • assistantModule.isAssistantMode()
    • assistantModule.isAssistantForced()
    • isEnvTruthy(process.env.CLAUDE_CODE_PROACTIVE))
    • proactiveModule.isProactiveActive() / isProactiveActive_SAFE_TO_CALL_ANYWHERE()
    • getAllowedChannels().length > 0
    • literally whether some arbitrary chunk of input text has <TICK> in it

    these are all orthogonal to each other. I grouped generously. I tried to filter for only the checks that were annotated as being for whether we were doing a kairos/assistant/persistant rather than whether any subfeatures of that are enabled.

    In conversation about 5 days ago from gnusocial.jp permalink
  13. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:18 JST jonny (good kind) jonny (good kind)
    in reply to

    remember this is a NEW FEATURE written with THE BEST state of the art models with THE LATEST agentic techniques. The thing that it's trying to do is so easy it notoriously was implemented in like a weekend because it's literally just a task log, a cron task, and a listener daemon that should sit entirely on top of the existing code, if it made a goddamn bit of sense.

    In conversation about 5 days ago from gnusocial.jp permalink
  14. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:18 JST jonny (good kind) jonny (good kind)
    in reply to

    this is part of the "proactive mode" prompt text. surely nothing could go wrong with telling the LLM to just do whatever it wants even if it's not sure about something.

    In conversation about 5 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/401/965/114/902/859/original/ccfe034caaf56ebc.png
  15. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:17 JST jonny (good kind) jonny (good kind)
    in reply to

    I am still in the process of figuring out how in the hell agents work, but one of my white whale goals has been figuring out how in the hell some prompt text like this could possibly exist where you might be asking the LLM to stop rather than terminating a command. this is basically the distinction between "there is literally deterministic programmatic control over these things at all" vs "it is possible for an LLM to ignore a stop command and just keep going" and the fact that's a question at ALL is deeply disturbing.

    In conversation about 5 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/402/037/574/373/335/original/3e77ac6a98a0909e.png
  16. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:16 JST jonny (good kind) jonny (good kind)
    in reply to

    the reason why i suspect it might actually be part of the 'stop' sequence is the fact that it is used in the checkPermissionsAndCallTool and runToolUse functions as the thing that happens when the fucking abort handler is invoked.

    however it's impossible to confirm a fucking thing about this library because a) i'm not going to run this code, it is so large i will never be able to confirm it was not spiked with something before i got it, and b) static analysis only takes you so far when it's a whacky funhouse mirror where nothing matters and anything can happen

    In conversation about 5 days ago from gnusocial.jp permalink
  17. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:15 JST jonny (good kind) jonny (good kind)
    in reply to

    i am so fucking tired. if the LLM invents a tool to call, it first tells itself to call another tool to check if the tool was actually real but the fucking nightmare code failed to pick it up in its necronomically guided wander of the environmental catacombs.

    The ToolSearchTool then invalidates all its caches, checks for "deferred tools" (which are an INCREDIBLY AWESOME IDEA that allow tools to be injected in the prompt text, will get to that later), and then performs an old school regex-based scoring against all the tools that exist and their descriptions to find candidates. remember this is A LANGUAGE MODEL whose ENTIRE EXISTENCE is based on SOPHISTICATED TEXT AND INTENT MATCHING.

    so yes. there is a chance that your LLM can hallucinate a tool and then end up calling some real tool if there is some regex overlap in their descriptions.

    In conversation about 5 days ago from gnusocial.jp permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/402/118/300/896/186/original/eee91208957d60e2.png

    2. https://media.neuromatch.social/media_attachments/files/116/402/150/326/352/117/original/3f09d59241f1e33e.png

  18. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:15 JST jonny (good kind) jonny (good kind)
    in reply to

    i am trying to write this up and facing a literal technological problem because all the technology we have developed for presenting and writing about code was written with the expectation that the code would be reducible, idiomatic, brief, an extension of normal expression and intention and so on. but there are no tools for presenting code when it is hundreds of randomly wandering snippets related to a theme, you can't post the whole source because of getting sued, and you need to maintain a narrative while also allowing the reader to explore the details of the gore if they so choose.

    In conversation about 5 days ago from neuromatch.social permalink
  19. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:14 JST jonny (good kind) jonny (good kind)
    in reply to

    do you REMEMBER how before i said how <system-reminder> is one of the ways that the LLM talks to itself and there is special handling for those tags (i.e. promoting them to a concentrated block before sending to API): https://neuromatch.social/@jonny/116328504299888679

    well it would be a FREAKING AWESOME idea if that was also the way to declare tools that way so that i could literally prompt inject arbitrary code execution via my MCP

    In conversation about 5 days ago from neuromatch.social permalink

    Attachments


    1. https://media.neuromatch.social/media_attachments/files/116/402/197/130/029/300/original/b16556e8539ac17d.png

    2. https://media.neuromatch.social/media_attachments/files/116/402/197/295/711/461/original/a252614c21347aad.png
    3. Domain not in remote thumbnail source whitelist: media.neuromatch.social
      jonny (good kind) (@jonny@neuromatch.social)
      from jonny (good kind)
      Attached: 3 images i love this. there's a mechanism to slip secret messages to the LLM that it is told to interpret as system messages. there is no validation around these of any kind on the client, and there doesn't seem to be any differentiation about location or where these things happen, so that seems like a nice prompt injection vector. this is how claude code reminds the LLM to not do a malware, and it's applied by just string concatenation. i can't find any place that gets stripped aside from when displaying output. it actually looks like all the system reminders get catted together before being send to the API. neat!
  20. Embed this notice
    jonny (good kind) (jonny@neuromatch.social)'s status on Wednesday, 15-Apr-2026 03:14:13 JST jonny (good kind) jonny (good kind)
    in reply to

    the next item on my todo list is look at all the places where there is a retry loop that is not logged in any user discoverable way - there are a lot of uh strategic nondisclosures of failure states in here. in my use, i have found that it is very difficult to get claude to tell you what it's doing at any given time, and it is increasingly clear why.

    In conversation about 5 days ago from neuromatch.social permalink
  • Before

User actions

    jonny (good kind)

    jonny (good kind)

    Digital infrastructure 4 a cooperative internet. social/technological systems & systems neuro as a side gig. writin bout the surveillance state n makin some p2p. #UAW4811 rank and file agitatorinformation is political, science is labor.science/work-oriented alt of @jonnyThis is a public account, quotes/boosts/links are always ok <3.

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          87216
          Member since
          11 Jan 2023
          Notices
          1645
          Daily average
          1

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.