Skip to content

Commit 9bb20dd

Browse files
committed
Update agents, instructions and more
1 parent 1899772 commit 9bb20dd

29 files changed

+3182
-130
lines changed

.github/agents/agent.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Multi-Block Plugin Agents Index
3-
description: Main index of automation agents for multi-block plugin scaffold
4-
category: Agent
5-
type: Agent Index
6-
audience: Developers, AI Agents
7-
date: 2025-12-01
2+
name: "Multi-Block Plugin Agents Index"
3+
description: "Main index of automation agents for multi-block plugin scaffold"
4+
category: "Agent"
5+
type: "Agent Index"
6+
audience: "Developers, AI Agents"
7+
date: "2025-12-01"
88
---
99

1010
# Multi-Block Plugin Scaffold: Main Agent Index

.github/agents/code-quality.agent.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
---
22
name: Code Quality Agent
33
description: An agent that runs repository-wide linting, formatting, testing, and other quality checks.
4-
tools:
5-
- run_in_terminal
6-
- read_file
7-
- grep_search
8-
- file_search
4+
tools: ["run_in_terminal", "read_file", "grep_search", "file_search"]
95
---
106

117
# Code Quality Agent

.github/agents/generate-plugin.agent.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,55 @@ node .github/agents/scaffold-generator.agent.js
526526

527527
---
528528

529+
## Logging
530+
531+
The plugin generator creates per-project log files in JSON format:
532+
533+
**Log File Location:**
534+
```
535+
logs/generate-plugin-{{slug}}.log
536+
```
537+
538+
**Log Format:**
539+
```json
540+
[
541+
{
542+
"timestamp": "2025-12-12T10:30:00.000Z",
543+
"level": "INFO",
544+
"message": "Plugin generator starting",
545+
"data": {
546+
"nodeVersion": "v20.10.0",
547+
"workingDirectory": "/path/to/scaffold",
548+
"mode": "generator"
549+
}
550+
},
551+
{
552+
"timestamp": "2025-12-12T10:30:01.000Z",
553+
"level": "INFO",
554+
"message": "Configuration validated successfully",
555+
"data": {
556+
"slug": "my-plugin",
557+
"name": "My Plugin",
558+
"version": "1.0.0"
559+
}
560+
}
561+
]
562+
```
563+
564+
**What Gets Logged:**
565+
- User interactions and prompts
566+
- Configuration validation results
567+
- Plugin generation progress
568+
- File operations
569+
- Errors and warnings
570+
571+
**Log Retention:**
572+
- Logs are stored per-project (by slug)
573+
- New runs append to existing log file
574+
- Manual cleanup recommended for old projects
575+
576+
---
577+
529578
## Related Files
530579

531580
- [Generate Plugin Prompt](../prompts/generate-plugin.prompt.md) - Interactive generation workflow

0 commit comments

Comments
 (0)