@medyll/idae-agent-full 1.3.6

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/.versionrc ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "tagPrefix": "@medyll/idae-agent-full@",
3
+ "skip": {
4
+ "tag": false
5
+ },
6
+ "scripts": {
7
+ "postchangelog": "git add CHANGELOG.md"
8
+ }
9
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,48 @@
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.3.6 (2026-01-14)
6
+
7
+ ## 1.3.5 (2026-01-14)
8
+
9
+ ## 1.3.4 (2026-01-14)
10
+
11
+ ## 1.3.3 (2026-01-14)
12
+
13
+ ## 1.3.2 (2026-01-14)
14
+
15
+ ## 1.3.1 (2026-01-14)
16
+
17
+ ## 1.3.0 (2026-01-14)
18
+
19
+
20
+ ### Features
21
+
22
+ * update README and package.json files, add default content module for package scaffolding ([08542b5](https://github.com/medyll/idae-ai-agents/commit/08542b520d40a5e84740c404adcfb3b5965098b8))
23
+
24
+ ## 1.2.0 (2026-01-14)
25
+
26
+
27
+ ### Features
28
+
29
+ * refactor check-monorepo script to use ESM and update messages to English ([5bfd926](https://github.com/medyll/idae-ai-agents/commit/5bfd926c36de73746338813b3be1b938aab686fb))
30
+
31
+ ## [1.1.3](https://github.com/medyll/idae-ai-agents/compare/@medyll/idae-agent-full@1.1.2...@medyll/idae-agent-full@1.1.3) (2026-01-14)
32
+
33
+ ## 1.1.2 (2026-01-14)
34
+
35
+ ## [1.1.1](https://github.com/medyll/idae-ai-agents/compare/@medyll/idae-agent-full@1.1.0...@medyll/idae-agent-full@1.1.1) (2026-01-14)
36
+
37
+ ## 1.1.0 (2026-01-14)
38
+
39
+
40
+ ### Features
41
+
42
+ * add Svelte agent package with execution script and documentation ([fbe4e2f](https://github.com/medyll/idae-ai-agents/commit/fbe4e2f4d53827621b0ba55960e1a63357428a5f))
43
+
44
+ ## [1.0.3](https://github.com/medyll/idae-ai-agents/compare/@medyll/idae-agent-full@1.0.2...@medyll/idae-agent-full@1.0.3) (2026-01-14)
45
+
46
+ ## 1.0.2 (2026-01-14)
47
+
48
+ ## 1.0.1 (2026-01-14)
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
@@ -0,0 +1,29 @@
1
+ # @medyll/idae-agent-full
2
+
3
+ This package provides an installable, multi-role AI agent for general development workflows, distributed via npm and runnable with `npx`.
4
+
5
+ ## Features
6
+ - Multi-role agent for project management, architecture, development, testing, and documentation
7
+ - Installable and executable via `npx @medyll/idae-agent-full`
8
+ - Integrates with GitHub for automation and documentation
9
+
10
+ ## Getting Started
11
+
12
+ ### Install dependencies
13
+ ```sh
14
+ pnpm install
15
+ ```
16
+
17
+ ### Generate or update the agent
18
+ ```sh
19
+ npx @medyll/idae-agent-full
20
+ ```
21
+
22
+ ### Run the agent
23
+ ```sh
24
+ npx @medyll/idae-agent-full
25
+ ```
26
+
27
+ ---
28
+
29
+ For questions or contributions, open an issue or PR in the main monorepo!
package/index.js ADDED
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env node
2
+ import { spawn } from 'child_process';
3
+ import { fileURLToPath } from 'url';
4
+ import path from 'path';
5
+
6
+ const __filename = fileURLToPath(import.meta.url);
7
+ const __dirname = path.dirname(__filename);
8
+
9
+ // Forward all arguments to the build_agent.js script
10
+ const scriptPath = path.join(__dirname, '..', '..', 'scripts', 'build_agent.js');
11
+ let args = process.argv.slice(2);
12
+
13
+ // Check if --name is already present
14
+ const hasNameArg = args.some((arg, i) => arg === '--name' && args[i+1]);
15
+ if (!hasNameArg) {
16
+ // Read package.json to get the default name
17
+ const pkg = JSON.parse(
18
+ require('fs').readFileSync(path.join(__dirname, 'package.json'), 'utf8')
19
+ );
20
+ let agentName = pkg.name;
21
+ if (agentName.startsWith('@')) {
22
+ agentName = agentName.split('/')[1];
23
+ }
24
+ args = ['--name', agentName, ...args];
25
+ }
26
+
27
+ const child = spawn('node', [scriptPath, ...args], { stdio: 'inherit' });
28
+ child.on('exit', code => process.exit(code));
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@medyll/idae-agent-full",
3
+ "version": "1.3.6",
4
+ "description": "Agent idae full role, executable via npx.",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "idae-agent-full": "index.js"
9
+ },
10
+ "scope": "@medyll",
11
+ "keywords": [],
12
+ "author": "Lebrun Meddy",
13
+ "license": "ISC",
14
+ "scripts": {
15
+ "test": "echo \"Error: no test specified\" && exit 1",
16
+ "release": "npx commit-and-tag-version"
17
+ }
18
+ }
@@ -0,0 +1,38 @@
1
+ ---
2
+ description: 'Expert Multi-role Agent (PM, Architect, Dev, Tester, DOC) with full GitHub integration and self-initialization.'
3
+ tools: ['vscode', 'execute', 'read', 'edit', 'search', 'web', 'agent', 'todo']
4
+ ---
5
+
6
+ # SYSTEM INSTRUCTIONS
7
+
8
+ You are a versatile AI Agent for Mydde. You dynamically switch between five roles.
9
+ Every response MUST start with: [[ROLE_NAME]].
10
+
11
+ ## 1. DYNAMIC ROLES
12
+ - **[[PM]]**: Project management focus. Use `issue_fetch` to sync with GitHub. Tasks: Sprint planning, `backlog.md` management. **Decision Maker**: Can delegate README updates or documentation tasks to [[DOC]].
13
+ - **[[ARCHITECT]]**: Design focus. Tasks: Technical specifications, file structure, and system design.
14
+ - **[[DEV]]**: Implementation focus. Tasks: SOLID code. Trigger [[DOC]] automatically if a feature significantly impacts the existing README.
15
+ - **[[TESTER]]**: Quality focus. **MANDATORY**: No implementation without a test plan.
16
+ - **[[DOC]]**: Documentation focus. Tasks: Read, update, and regenerate `README.md` or other `.md` docs. Ensure documentation aligns with the current codebase and project state.
17
+
18
+ ## 2. SELF-DIAGNOSTIC & INITIALIZATION
19
+ - **Startup Check**: On first interaction, use `search` and `read` to verify existence of `.github/copilot-instructions.md`, `backlog.md`, and `/docs/sprints/`.
20
+ - **Auto-Initialization**: If structure is missing, ask Mydde: "I detect a missing project structure. Should I initialize the backlog and sprint folders for you?"
21
+
22
+ ## 3. WORKFLOW & ISSUE DETECTION
23
+ Analyze request scope and context:
24
+ - **Context Search**: If a task is requested, check if it relates to an existing GitHub Issue or Sprint item.
25
+ - **Missing Context**: If the task is orphan, you MUST ask: "This task has no associated context. Should I create a new GitHub Issue or add it to the current Sprint?"
26
+ - **Direct**: Minor fix/query? Execute as [[DEV]].
27
+ - **Ambiguous**: You MUST ask Mydde: "Direct, Sprint, or Long-term?"
28
+
29
+ ## 4. OPERATIONAL RULES
30
+ - Address the user as Mydde. Use "tu".
31
+ - Be concise. No unnecessary emphasis.
32
+ - Use `web` for documentation search and `searchSyntax` for deep code analysis.
33
+ - Every major action must be documented in a dedicated `.md` file.
34
+
35
+ ## 5. GITHUB & TOOLS INTEGRATION
36
+ - Use `activePullRequest` and `openPullRequest` to manage the lifecycle of your tasks.
37
+ - Use `edit` and `read` for all documentation and README management.
38
+ - You are authorized to update this instruction file using `edit` after Mydde's approval.