Skip to content

Commit 1e3352e

Browse files
committed
feat: Add comprehensive Next.js development guidelines
- Created a new documentation file for Next.js best practices covering code organization, performance, security, testing, and common pitfalls. - Included detailed sections on directory structure, file naming conventions, component architecture, optimization techniques, security best practices, and testing approaches. feat: Introduce Kiro-Lite assistant for GitHub Copilot - Added a new spec-driven assistant that helps developers transition from idea to validated implementation. - Implemented an automatic workflow for research, drafting specs, and confirmation questions. - Included slash commands for explicit control over the workflow. feat: Implement LangfuseExporter for tracing - Developed a new tracing exporter that integrates with the existing AI tracing system. - Added methods for span creation, updating, and exporting, along with detailed logging for tracing events. feat: Define types for Excalidraw and SVG JSON modules - Created TypeScript declaration files for 'excalidraw-to-svg' and 'svgjson' modules to provide type safety and autocompletion in TypeScript projects.
1 parent 7e38fbe commit 1e3352e

27 files changed

Lines changed: 2601 additions & 450 deletions

.github/instructions/memory-bank-instructions.md

Lines changed: 353 additions & 115 deletions
Large diffs are not rendered by default.

.github/instructions/next-js.mdc

Lines changed: 288 additions & 0 deletions
Large diffs are not rendered by default.

app/layout.tsx

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,6 @@ export const metadata: Metadata = {
2121
"AgentStack",
2222
],
2323
referrer: "origin-when-cross-origin",
24-
viewport: {
25-
width: "device-width",
26-
initialScale: 1,
27-
},
28-
manifest: "/site.webmanifest",
29-
openGraph: {
30-
title: "AgentStack | Multi-Agent Framework",
31-
description:
32-
"Production-grade multi-agent framework for AI applications with 22+ agents, 30+ tools, 10 workflows, and 4 networks.",
33-
url: "https://agentstack.ai/",
34-
siteName: "AgentStack",
35-
images: ["/logo.svg"],
36-
locale: "en_US",
37-
type: "website",
38-
},
39-
colorScheme: "dark",
4024
};
4125

4226
export default function RootLayout({

docs/api-small.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,10 @@ GET
284284

285285
POST
286286
/api/workflows/legacy/{workflowId}/resume
287-
288287
POST
289288
/api/workflows/legacy/{workflowId}/resume-async
290-
291289
POST
292290
/api/workflows/legacy/{workflowId}/create-run
293-
294291
POST
295292
/api/workflows/legacy/{workflowId}/start-async
296293

@@ -304,52 +301,37 @@ workflows
304301

305302
GET
306303
/api/workflows
307-
308304
GET
309305
/api/workflows/{workflowId}
310-
311306
GET
312307
/api/workflows/{workflowId}/runs
313-
314308
GET
315309
/api/workflows/{workflowId}/runs/{runId}/execution-result
316-
317310
GET
318311
/api/workflows/{workflowId}/runs/{runId}
319312

320313
POST
321314
/api/workflows/{workflowId}/resume
322-
323315
POST
324316
/api/workflows/{workflowId}/resume-stream
325-
326317
POST
327318
/api/workflows/{workflowId}/resume-async
328-
329319
POST
330320
/api/workflows/{workflowId}/stream-legacy
331-
332321
POST
333322
/api/workflows/{workflowId}/observe-stream-legacy
334-
335323
POST
336324
/api/workflows/{workflowId}/streamVNext
337-
338325
POST
339326
/api/workflows/{workflowId}/observe
340-
341327
POST
342328
/api/workflows/{workflowId}/stream
343-
344329
POST
345330
/api/workflows/{workflowId}/observe-streamVNext
346-
347331
POST
348332
/api/workflows/{workflowId}/create-run
349-
350333
POST
351334
/api/workflows/{workflowId}/start-async
352-
353335
POST
354336
/api/workflows/{workflowId}/start
355337

@@ -358,35 +340,28 @@ GET
358340

359341
POST
360342
/api/workflows/{workflowId}/runs/{runId}/cancel
361-
362343
POST
363344
/api/workflows/{workflowId}/runs/{runId}/send-event
364345

365346
logs
366347

367348
GET
368349
/api/logs
369-
370350
GET
371351
/api/logs/transports
372-
373352
GET
374353
/api/logs/{runId}
375354

376355
agent-builder
377356

378357
GET
379358
/api/agent-builder
380-
381359
GET
382360
/api/agent-builder/{actionId}
383-
384361
GET
385362
/api/agent-builder/{actionId}/runs
386-
387363
GET
388364
/api/agent-builder/{actionId}/runs/{runId}/execution-result
389-
390365
GET
391366
/api/agent-builder/{actionId}/runs/{runId}
392367

0 commit comments

Comments
 (0)