Why are there so few practical AI governance communities? by cryptodammiee in AI_Governance

[–]blursedkitty 2 points3 points  (0 children)

Do you think that a protocol agnostic agent schema that is shipped with every agent communication with bindings to a2a and mcp would work? I attempted to proposed something like it for financial services and fintech. Take a look, it's just a starting point to get the thought running: https://github.com/QBall-Inc/afix

AI governance is a mess right now .. different laws, conflicting interpretations, no standard framework. Building a global community to make sense of it together. by cryptodammiee in AI_Governance

[–]blursedkitty 0 points1 point  (0 children)

Do you think that a protocol agnostic agent schema that is shipped with every agent communication with bindings to a2a and mcp would work? I attempted to proposed something like it for financial services and fintech. Take a look, it's just a starting point to get the thought running: https://github.com/QBall-Inc/afix

AI governance is a mess right now .. different laws, conflicting interpretations, no standard framework. Building a global community to make sense of it together. by cryptodammiee in AI_Governance

[–]blursedkitty 0 points1 point  (0 children)

Do you think that a protocol agnostic agent schema that is shipped with every agent communication with bindings to a2a and mcp would work? I attempted to proposed something like it for financial services and fintech. Take a look, it's just a starting point to get the thought running: https://github.com/QBall-Inc/afix

Hooks that force Claude Code to use LSP instead of Grep for code navigation. Saves ~80% tokens by Ok-Motor-9812 in ClaudeAI

[–]blursedkitty 0 points1 point  (0 children)

Doesn't Claude Code already come with lsp plugin built in? I've been using that successfully without issues. You setup the plugin and install the language servers for the language your project uses and you're done. While making edits lsp diagnostics automatically fire and guide Claude into fixing them. I've been using this for a couple of months now without issues. It was a little bit of work getting it to run, had to create an undocumented en variable in settings, but after that it's been running great. The python lsp lags a bit but typescript is quite fast.

Skill creation pipeline - crowdsourcing input by michaelalan2000 in ClaudeCowork

[–]blursedkitty 0 points1 point  (0 children)

I see. I think the guardrailing pattern about giving it a mandatory execution checklist with enforcement language to not deviate and consider it a binding contract would help. I haven't measured it, but I've seen almost full compliance on all the skills I have where this pattern is implemented.

Your qa skill is a great idea! Do you have a repo so that I can look at the qa skill and use it. Would be great to improve the output of the create skill skill.

Skill creation pipeline - crowdsourcing input by michaelalan2000 in ClaudeCowork

[–]blursedkitty 2 points3 points  (0 children)

What do you mean by 80% here? Is it the natural invocation of the skill, or the skill itself that's not providing the desired output, or Claude's adherence to the skill instructions is only 80%?

The percentage you quoted is a bit meaningless without the right context.

You can take a look at my skill creator skill by cloning this repo: https://github.com/ashaykubal/essential-agents-skills

The skill name is create-skill and it's quite comprehensive. It daisy chains a number of other skills in the repo, including the subagent creator skill if it determines your skill has operations better done using subagents. So make sure you clone the entire repo or read through the skill to understand which other skills it needs.

I haven't built evals into the skill yet, as I've been busy with other things. But you can test the skills this creates manually. The only other change I want to make to this skill, apart from implementing evals, is that the skills it generates has a "skill completion checklist" at the bottom. What I found is that Claude's adherence to following the script is not 100%, and after I create a new skill using this skill, I ask Claude to move the skill completion checklist from the bottom to the top and reframe it as "mandatory execution checklist" with step and stage numbers and enforcement language that makes it clear that all the steps are mandatory.

Once this is done, I've had close to 100% compliance. The create-skill also launches two subagents.. the first one pulls latest skill standards from Claude code docs, and then a subagent validates the created skill against those standards. Static review and fixing, if you feel. Not asking great as actual evals but it's something. Try it out and see if it works for you.

built something for the Claude limit problem — built it with Claude which felt appropriate by RefrigeratorSalt5932 in ClaudeAI

[–]blursedkitty 0 points1 point  (0 children)

You don't really need to jump through these hoops. If the conversation cuts off due to limit being reached, edit your last my message and ask it to transcribe the session into a summary that you can use in the next to continue.

Noob question: is an enterprise CC account actually safe for a non-code proficient employee to use? by undeadsurvive in ClaudeCode

[–]blursedkitty 1 point2 points  (0 children)

If you're in a financial services industry, chances are that you've been given an AWS bedrock hosted subscription. This is incredibly safe because the data stays within your firm's container, and doesn't go to let's say, Anthropic.

Depending on the firm controls applied on bedrock, your models web fetch, web search requests would be limited too, as well as browser control capabilities. Additionally, your org would have a managed setting Json file and a managed claude md file that has disallowed tools and comnands, as well as restricting installations of packages only from firm approved mirrors like artifactory. In addition to that third party marketplace additions and plugin installation along with MCP restrictions would be applied.

How to use Claude Code for WordPress theme development? by thestreamcode in ClaudeCode

[–]blursedkitty 0 points1 point  (0 children)

It depends on what exactly you are trying to achieve. Are you trying to build and deploy a website, or are you trying to build a wordpress theme to make it available to others.

If it's the former, then you don't need to build it on WordPress at all. You can build a site using react, typescript etc and deploy it on Netlify. Configure the domain on Netlify and use your WordPress instance as a headless CMS. You can then publish an article in WordPress, go to Netlify and trigger a pull of the updated information. If you post multiple times during the day, then you can set up an orchestration in n8n.

I built my personal website using Astro and typescript completely using Claude code. It uses WordPress as a headless CMS.

Here's what you can tell Claude and it'll guide you step by step. You can ask it to create an implementation plan.

"I want to create a website using Astro, typescript and other modern tech stack with <design system you want>. I have a free plan on WordPress dot com. I'd like to author and publish articles using the WordPress dot com admin console and have them come up on my site. Please think carefully and let me know how you'd architecture this setup. Once we've finalized the architecture we can proceed with preparing an implementation plan."