Top
Best
New

Posted by rochansinha 4 days ago

Skills Officially Comes to Codex(developers.openai.com)
300 points | 129 commentspage 3
jonrosner 3 days ago|
one thing that I am missing from the specification is a way to inject specific variables into the skills. If I create let's say a postgres-skill, then I can either (1) provide the password on every skill execution or (2) hardcode the password into my script. To make this really useful there needs to be some kind of secret storage that the agent can read/write. This would also allow me as a programmer to sell the skills that I create more easily to customers.
j_bum 3 days ago||
I have no clue how you’re running your agents or what you’re building, but giving the raw password string to a the model seems dubious?

Otherwise, why not just keep the password in an .env file, and state “grab the password from the .env file” in your Postgres skill?

jonrosner 3 days ago|||
I am thinking of distributing skills that I build to my clients. As my clients are mostly non-technical users I need this process of distribution to be as easy as possible. Even adding a .env file would probably be too much for most of them. With skills I can now finally distribute my logic easily, just send the raw files and tell them to put it into a folder - done. But there is no easy way for them to "setup" the credentials in those skills yet. The best UX in my opinion would be for Codex (or Claude, doesn't matter) to ask for those setup-parameters once when first using the skill and process the inputs in a secure manner, i.e. some internal secret storage
JamesSwift 3 days ago|||
That’s exactly what I do.
bavell 3 days ago||
> there needs to be some kind of secret storage that the agent can read/write

Why not the filesystem?

I would create a local file (e.g. .env) in each project using postgres, then in my postgres skill, tell the agent to check that file for credentials.

not_a_toaster 3 days ago||
We’ve made a zero shot decision tree
summarity 3 days ago||
See also:

Anthropic: https://www.anthropic.com/engineering/equipping-agents-for-t...

Copilot: https://github.blog/changelog/2025-12-18-github-copilot-now-...

rochansinha 4 days ago||
Agent Skills let you extend Codex with task-specific capabilities. A skill packages instructions, resources, and optional scripts so Codex can perform a specific workflow reliably. You can share skills across teams or the community, and they build on the open Agent Skills standard.

Skills are available in both the Codex CLI and IDE extensions.

dan_wood 4 days ago|
Thanks to Anthropic.
user3939382 3 days ago||
What they’re calling skills is a 5% weak implementation of what skills should be. My AI models fix this.
apetresc 3 days ago||
This seems great and all, but to my surprise the default $plan skill in Codex prefers to writing plan files to ~/.codex/plans. Is this intentional, or an idiosyncrasy of my particular instance of Codex? Every agent tool I've ever seen before puts planning documentation in the repo folder itself, not in a global user directory. Why this weird decision?
karolcodes 3 days ago||
anyone using this in agentic workflow already? how is it?
haffi112 3 days ago||
What are your favourite skills?
frankc 3 days ago||
The skills that matter most to me are the ones I create myself (with the skill creator skill) that are very specific and proprietary. For instance, a skill on how to write a service in my back-testing framework.

I do also like to make skills on things that are more niche tools, like marimo (a very nice jupyter replacement). The model probably does known some stuff about it, but not enough, and the agent could find enough online or in context7, but it will waste a lot of time and context in figuring it out every time. So instead I will have a deep thinking agent do all that research up front and build a skill for it, and I might customize it to be more specific to my environment, but it's mostly the condensed research of the agent so that I don't need to redo that every time.

dmd 3 days ago|||
A very particular set of skills.
pylotlight 3 days ago||
nunchuck skills
not_a_toaster 3 days ago||
The only skill that matters
firemelt 2 days ago|
why the need to use notion?

can we use notepad or somrthing free and not proprietary?