[PR #24] [CLOSED] Palash/post model hook #64

Closed
opened 2026-02-16 06:17:04 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/24
Author: @Palashio
Created: 8/26/2025
Status: Closed

Base: mainHead: palash/post-model-hook


📝 Commits (10+)

📊 Changes

18 files changed (+2443 additions, -385 deletions)

View changed files

examples/coding/.env.example (+5 -0)
examples/coding/.gitignore (+3 -0)
examples/coding/coding-agent.ts (+31 -0)
examples/coding/coding_agent_state.ts (+92 -0)
examples/coding/coding_instructions.ts (+380 -0)
examples/coding/coding_post_model_hook.ts (+118 -0)
examples/coding/command_safety.ts (+115 -0)
examples/coding/constants.ts (+21 -0)
examples/coding/langgraph.json (+7 -0)
examples/coding/subagents.ts (+58 -0)
examples/coding/tools.ts (+241 -0)
📝 package.json (+4 -2)
📝 src/graph.ts (+47 -3)
src/interrupt.ts (+131 -0)
src/local_tools.ts (+668 -0)
📝 src/prompts.ts (+212 -259)
📝 src/types.ts (+14 -0)
📝 yarn.lock (+296 -121)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/deepagentsjs/pull/24 **Author:** [@Palashio](https://github.com/Palashio) **Created:** 8/26/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `palash/post-model-hook` --- ### 📝 Commits (10+) - [`79dbf3f`](https://github.com/langchain-ai/deepagentsjs/commit/79dbf3f21911de29185e0dce60744d5cb893d888) feat: pass through post model hook - [`250f21d`](https://github.com/langchain-ai/deepagentsjs/commit/250f21d06a3e3f4a1beb03b0880ee45401e8e661) nit: mods - [`dd6533a`](https://github.com/langchain-ai/deepagentsjs/commit/dd6533ae1765fe30c44a8db44b50492d976f7dfa) feat: add constants - [`f948e50`](https://github.com/langchain-ai/deepagentsjs/commit/f948e50d876c96a7c170b8fe06fba3716999459a) feat: updates, formatting - [`3b7ebd7`](https://github.com/langchain-ai/deepagentsjs/commit/3b7ebd767438451b7a2b8c7c3be91f9dcceb2a60) feat: update yarn lock with new glob - [`fd9aa3b`](https://github.com/langchain-ai/deepagentsjs/commit/fd9aa3b775f8a0161d7c7baa55c3bea3947b31c1) nit: update extra folder - [`9632671`](https://github.com/langchain-ai/deepagentsjs/commit/96326712a698ce3cb83c8f5ba2bdd8c9c377d5de) feat: update prompts - [`2189496`](https://github.com/langchain-ai/deepagentsjs/commit/218949623de5470a8484364de4aedb3852ce01e1) feat: updates - [`b1d8bf5`](https://github.com/langchain-ai/deepagentsjs/commit/b1d8bf59b58fc241c9731dcc9d4af65e5043bcd3) feat: update post model hook - [`76e1439`](https://github.com/langchain-ai/deepagentsjs/commit/76e14399877a81c72af1a5138dc24d2a18e15222) feat: interrupt config ### 📊 Changes **18 files changed** (+2443 additions, -385 deletions) <details> <summary>View changed files</summary> ➕ `examples/coding/.env.example` (+5 -0) ➕ `examples/coding/.gitignore` (+3 -0) ➕ `examples/coding/coding-agent.ts` (+31 -0) ➕ `examples/coding/coding_agent_state.ts` (+92 -0) ➕ `examples/coding/coding_instructions.ts` (+380 -0) ➕ `examples/coding/coding_post_model_hook.ts` (+118 -0) ➕ `examples/coding/command_safety.ts` (+115 -0) ➕ `examples/coding/constants.ts` (+21 -0) ➕ `examples/coding/langgraph.json` (+7 -0) ➕ `examples/coding/subagents.ts` (+58 -0) ➕ `examples/coding/tools.ts` (+241 -0) 📝 `package.json` (+4 -2) 📝 `src/graph.ts` (+47 -3) ➕ `src/interrupt.ts` (+131 -0) ➕ `src/local_tools.ts` (+668 -0) 📝 `src/prompts.ts` (+212 -259) 📝 `src/types.ts` (+14 -0) 📝 `yarn.lock` (+296 -121) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 06:17:04 -05:00
yindo closed this issue 2026-02-16 06:17:04 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagentsjs#64