This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Updates the create-agent skill to a fully working coding agent - #2
Open
munish-shah wants to merge 2 commits into
Open
Updates the create-agent skill to a fully working coding agent#2munish-shah wants to merge 2 commits into
munish-shah wants to merge 2 commits into
Conversation
munish-shah
commented
Feb 10, 2026
- 7 Zod-schema tools: file read/write/edit, shell commands, web search, and web fetch
- Polished Ink TUI with ASCII banner, streaming text, and tool call indicators
- Headless mode for CI/CD usage
- Complete package.json with pinned dependencies and setup instructions
- Fix SDK version from ^0.1.2 to ^0.8.0 (required for getItemsStream) - Switch from getTextStream() to getItemsStream() for tool execution - Use SDK tool() helper instead of manual tool definitions - Fix empty catch blocks that silently swallowed errors - Fix tool completion indicator logic in CLI - Add maxToolRounds configuration
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
reviewed
Feb 11, 2026
louisgv
approved these changes
Feb 11, 2026
louisgv
left a comment
Contributor
There was a problem hiding this comment.
Commented! Looks like a good start. Let's merge and do another iteration? -- I think the boilerplate and the dependency version can be more dynamic than static -- i.e can we make this skill more robust/durable by leveraging the coding agent's research skills?
…model picker, dynamic deps, Node LTS, generic agent framing, THEME constant for terminal readability
louisgv
reviewed
Feb 20, 2026
Comment on lines
+425
to
+448
| tool({ | ||
| name: 'list_files', | ||
| description: 'List files in a directory to understand project structure', | ||
| inputSchema: z.object({ | ||
| path: z.string().default('.').describe('Directory to search'), | ||
| recursive: z.boolean().default(false).describe('List recursively'), | ||
| }), | ||
| execute: async (params) => { | ||
| call('list_files', params); | ||
| try { | ||
| const files = await glob(params.recursive ? '**/*' : '*', { | ||
| cwd: params.path, | ||
| nodir: false, | ||
| ignore: ['**/node_modules/**', '**/.git/**', '**/dist/**'], | ||
| }); | ||
| return done('list_files', { | ||
| files: files.slice(0, 100), | ||
| count: files.length, | ||
| }); | ||
| } catch (e) { | ||
| return done('list_files', { error: toErrorMessage(e) }); | ||
| } | ||
| }, | ||
| }), |
Contributor
There was a problem hiding this comment.
Generally better if we can instruct the agent to put tools in a specific files -- make it more modular
DGhost1
approved these changes
Apr 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.