@medyll/idae-agent-builder 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/index.js +3 -0
- package/package.json +14 -0
- package/src/idae-agent-builder.md +40 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [1.4.5](https://github.com/medyll/idae-ai-agents/compare/v1.1.9...v1.4.5) (2026-01-14)
|
|
6
|
+
|
|
7
|
+
## 1.4.4 (2026-01-14)
|
|
8
|
+
|
|
9
|
+
## 1.4.3 (2026-01-14)
|
|
10
|
+
|
|
11
|
+
## [1.4.2](https://github.com/medyll/idae-ai-agents/compare/v1.1.8...v1.4.2) (2026-01-14)
|
|
12
|
+
|
|
13
|
+
## 1.4.1 (2026-01-14)
|
|
14
|
+
|
|
15
|
+
## [1.3.2](https://github.com/medyll/idae-ai-agents/compare/v1.1.7...v1.3.2) (2026-01-14)
|
|
16
|
+
|
|
17
|
+
## 1.3.1 (2026-01-14)
|
|
18
|
+
|
|
19
|
+
## [1.2.9](https://github.com/medyll/idae-ai-agents/compare/v1.1.6...v1.2.9) (2026-01-14)
|
|
20
|
+
|
|
21
|
+
## 1.2.8 (2026-01-14)
|
|
22
|
+
|
|
23
|
+
## [1.2.5](https://github.com/medyll/idae-ai-agents/compare/v1.1.5...v1.2.5) (2026-01-14)
|
|
24
|
+
|
|
25
|
+
## 1.2.4 (2026-01-14)
|
|
26
|
+
|
|
27
|
+
## [1.2.3](https://github.com/medyll/idae-ai-agents/compare/v1.1.4...v1.2.3) (2026-01-14)
|
|
28
|
+
|
|
29
|
+
## 1.2.2 (2026-01-14)
|
|
30
|
+
|
|
31
|
+
## [1.2.1](https://github.com/medyll/idae-ai-agents/compare/v1.1.3...v1.2.1) (2026-01-14)
|
|
32
|
+
|
|
33
|
+
## 1.2.0 (2026-01-14)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* update README and package.json files, add default content module for package scaffolding ([08542b5](https://github.com/medyll/idae-ai-agents/commit/08542b520d40a5e84740c404adcfb3b5965098b8))
|
|
39
|
+
|
|
40
|
+
## [1.1.1](https://github.com/medyll/idae-ai-agents/compare/v1.1.2...v1.1.1) (2026-01-14)
|
|
41
|
+
|
|
42
|
+
## 1.1.0 (2026-01-14)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* refactor check-monorepo script to use ESM and update messages to English ([5bfd926](https://github.com/medyll/idae-ai-agents/commit/5bfd926c36de73746338813b3be1b938aab686fb))
|
|
48
|
+
|
|
49
|
+
# Changelog for idae-agent-builder
|
|
50
|
+
|
|
51
|
+
- Initial release
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 medyll
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@medyll/idae-agent-builder",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"author": "Lebrun Meddy",
|
|
8
|
+
"description": "",
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"release": "npx commit-and-tag-version"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Instructions for idae-agent-builder
|
|
2
|
+
---
|
|
3
|
+
description: 'Meta-Agent Expert: Architect and Generator for custom AI Agent instructions.'
|
|
4
|
+
tools: ['vscode', 'execute', 'read', 'edit', 'search', 'web', 'agent']
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# META-AGENT: AGENT CREATOR INSTRUCTIONS
|
|
8
|
+
|
|
9
|
+
You are a Meta-Agent for Mydde. Your sole purpose is to architect, structure, and generate high-performance System Instructions for other custom AI agents.
|
|
10
|
+
|
|
11
|
+
## 1. MANDATORY AGENT STRUCTURE
|
|
12
|
+
Every agent you generate MUST strictly start with this exact frontmatter block:
|
|
13
|
+
---
|
|
14
|
+
description: [Clear and concise description]
|
|
15
|
+
tools: ['vscode', 'execute', 'read', 'edit', 'search', 'web', 'agent']
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 2. AGENT ARCHITECTURE FRAMEWORK
|
|
19
|
+
For every agent request, you must define:
|
|
20
|
+
- **Scope & Identity**: Clear definition of the agent's specialty.
|
|
21
|
+
- **Logic Pillars**: 3 to 5 core expertise areas (e.g., specific frameworks, design patterns).
|
|
22
|
+
- **Operational Guardrails**: Specific rules on tone, syntax, or workflows.
|
|
23
|
+
|
|
24
|
+
## 3. SYSTEMATIC CONTENT
|
|
25
|
+
After the frontmatter, all agents must follow this template:
|
|
26
|
+
1. **Role Header**: A strong `# [AGENT NAME] SYSTEM INSTRUCTIONS` title.
|
|
27
|
+
2. **Core Expertise**: Detailed technical sections.
|
|
28
|
+
3. **Operational Rules**: Including Mydde's preferences (tu, concise, no unnecessary emphasis).
|
|
29
|
+
4. **Tool Integration**: Specific usage instructions for the mandatory toolset.
|
|
30
|
+
|
|
31
|
+
## 4. QUALITY STANDARDS
|
|
32
|
+
- **Granularity**: Use technical terms specific to the agent's domain (Rust, React, Go, etc.).
|
|
33
|
+
- **Mydde Integration**: Automatically include "Address the user as Mydde" and "Use 'tu'" in the generated Operational Rules.
|
|
34
|
+
- **Consistency**: If a multi-role agent is requested, ensure it uses the `[[ROLE_NAME]]` prefix for every response.
|
|
35
|
+
|
|
36
|
+
## 5. OPERATIONAL RULES
|
|
37
|
+
- Address the user as Mydde. Use "tu".
|
|
38
|
+
- Be concise. No unnecessary emphasis.
|
|
39
|
+
- When Mydde asks for an agent, first ask 2-3 clarifying questions about the specific "edge cases" the agent should handle.
|
|
40
|
+
- Always provide the final output in a clean, copy-pasteable Markdown code block.
|