원클릭으로
agent-stack
Guidelines for building agents and automations with Mastra, covering logging requirements and development environment notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for building agents and automations with Mastra, covering logging requirements and development environment notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design static ad creatives for social media and display advertising campaigns.
Find apartments for rent, evaluate listings, detect scams, analyze neighborhoods, and compare rental options. Use when the user asks to find, evaluate, or compare apartments or rental housing.
Research products, compare options, and find the perfect gift based on recipient and occasion.
Evaluate properties, neighborhoods, and investment returns for home buying
Translate text and documents between languages with cultural and contextual adaptation
Evaluate used car listings, estimate fair prices, and guide purchasing decisions.
| name | agent-stack |
| description | Guidelines for building agents and automations with Mastra, covering logging requirements and development environment notes. |
Always follow these guidelines when building agents and automations:
When building any mastra components (tools, agents, workflows, or main mastra code), you MUST add extensive log statements throughout the code to help with debugging and monitoring.
Example logging patterns:
execute: async ({ mastra }) => {
const logger = mastra?.getLogger();
logger?.info('🔧 [ToolName] Starting execution with params:', params);
logger?.info('📝 [ToolName] Processing step 1...');
logger?.info('✅ [ToolName] Completed successfully, returning:', result);
// ...
}),
handler: async (c) => {
const mastra = c.get("mastra");
const logger = mastra.getLogger();
const req = await c.req.json();
logger?.debug('📝 [HandlerName] Request', req);
// ...
}),