Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ff5f032
feat: initialize StackOne TypeScript agent with essential configurati…
hiskudin Jan 26, 2026
e6ee8a2
Update apps/stackone-typescript-agent/package.json
hiskudin Jan 26, 2026
54aec9b
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 26, 2026
99baf87
Update apps/stackone-typescript-agent/.env.example
hiskudin Jan 26, 2026
a59f672
feat: enhance JSON Schema handling in McpTool
hiskudin Jan 26, 2026
f8eb7d3
chore: update .gitignore to include lock files for package management
hiskudin Jan 26, 2026
f69867a
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 26, 2026
7434043
fix: update Accept header in mcpRequest to remove text/event-stream
hiskudin Jan 26, 2026
88db30b
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 26, 2026
feaaa86
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 26, 2026
faa3f1c
chore: update package.json to set private flag and rename typecheck s…
hiskudin Jan 26, 2026
fa587dc
chore: update .gitignore to maintain .pem file exclusion and add pack…
hiskudin Jan 26, 2026
f1f8f5b
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 29, 2026
99a6f6a
Refactor tool management in agent.ts
hiskudin Jan 29, 2026
6e3b443
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Jan 29, 2026
49d8322
Improve StackOne TypeScript Agent configuration and dependencies
hiskudin Feb 4, 2026
18e11ab
Update .env.example to clarify tool filter options for StackOne TypeS…
hiskudin Feb 4, 2026
241248b
Refactor agent.ts to improve error handling and conversation history …
hiskudin Feb 4, 2026
198ba08
Improve .env.example with additional comments
hiskudin Feb 5, 2026
336b0bc
Add Node.js engine requirement to package.json for StackOne TypeScrip…
hiskudin Feb 5, 2026
b7dcee1
Update apps/stackone-typescript-agent/src/agent.ts
hiskudin Feb 5, 2026
b525059
Refactor interactiveMode function in agent.ts
hiskudin Feb 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ yarn-error.log*

# Misc
.DS_Store
*.pem
*.pem
15 changes: 15 additions & 0 deletions apps/stackone-typescript-agent/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
STACKONE_API_KEY=your_stackone_api_key
STACKONE_ACCOUNT_ID=your_stackone_account_id

# Optional: override StackOne base URL (default: https://api.stackone.com)
# STACKONE_BASE_URL=https://api.stackone.com

# Optional: filter tools by action key pattern (default: "*" loads all)
# Examples: only messaging (Gmail), or only list/get operations
# STACKONE_TOOL_FILTER=messaging_*
# STACKONE_TOOL_FILTER=*_list_*

# Optional: model to use (default: claude-sonnet-4-20250514)
# MODEL=claude-sonnet-4-20250514

ANTHROPIC_API_KEY=your_anthropic_api_key
Loading
Loading