The instructions file is too long for user to efficiently use the AI agent for ServiceNow tasks. I have seen better results from following this organization strategy:
.github/
├── copilot-instructions.md # Consolidated instructions; 500 - 1000 LOC 250 - 700 LOC
└── skills/
├── snu-agent-workflow/
│ └── SKILL.md
└── snu-agent-api/
└── SKILL.md
Why: As AI model providers continue to make corrections to usage costs, its important to only provide the necessary context to the AI agent. A well organized skills folder could allow users to stretch their tokens or AI credits even further. Currently, the instructions are included in the input every time which is less efficient than encouraging the agent to discover the skills needed for the task.
Thanks for your continuous improvements to sn-scriptsync & sn utils
The instructions file is too long for user to efficiently use the AI agent for ServiceNow tasks. I have seen better results from following this organization strategy:
.github/
├── copilot-instructions.md # Consolidated instructions;
500 - 1000 LOC250 - 700 LOC└── skills/
├── snu-agent-workflow/
│ └── SKILL.md
└── snu-agent-api/
└── SKILL.md
Why: As AI model providers continue to make corrections to usage costs, its important to only provide the necessary context to the AI agent. A well organized skills folder could allow users to stretch their tokens or AI credits even further. Currently, the instructions are included in the input every time which is less efficient than encouraging the agent to discover the skills needed for the task.
Thanks for your continuous improvements to sn-scriptsync & sn utils