apex-dev 2.1.3 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.local/share/amp/history.jsonl +32 -0
- package/.local/share/amp/session.json +2 -2
- package/.local/share/amp/threads/T-019c9769-4a8a-77b8-beab-f48973276f9a.json +1541 -0
- package/.local/share/amp/threads/T-019c9772-edac-7075-b26e-0ada1f8697d2.json +7 -0
- package/.local/share/amp/threads/T-019c97e8-a9ab-71a1-a8f9-109c540c98bf.json +111 -0
- package/.local/share/amp/threads/T-019c97e9-2277-753c-8c5d-df745fa6cfff.json +7 -0
- package/.local/share/amp/threads/T-019c97e9-f28e-758d-9663-e37047a8ed95.json +111 -0
- package/.local/share/amp/threads/T-019c97ea-17c7-77b8-92b2-f641c069bcc9.json +71 -0
- package/.local/share/amp/threads/T-019c97ea-44c6-75b8-88bc-d88113194f6a.json +1611 -0
- package/.local/share/amp/threads/T-019c97ec-abae-7251-a5f6-693adf496a1c.json +7 -0
- package/.local/share/amp/threads/T-019c97f5-8e61-73ad-8c5d-2637abedcde6.json +1341 -0
- package/.local/share/amp/threads/T-019c989d-4f4e-7249-bde0-21d19455ccae.json +163 -0
- package/.local/share/amp/threads/T-019c989d-9024-73c4-bee8-e2ae45028a39.json +124 -0
- package/.local/share/amp/threads/T-019c989e-1394-74ad-8234-ac573fcdb4c7.json +1260 -0
- package/.local/share/amp/threads/T-019c989f-e3dd-772e-85ac-525d0fc88fda.json +403 -0
- package/.local/share/amp/threads/T-019c98a1-7b0c-778a-b311-2e1cff85d710.json +3422 -0
- package/.local/share/amp/threads/T-019c98c5-4b7f-7284-99e9-88aa8c18ba66.json +1830 -0
- package/.local/share/amp/threads/T-019c98d0-f27f-76ec-be10-6df96f22be99.json +4061 -0
- package/.local/share/amp/threads/T-019c98f9-d031-704d-a0c2-f2f395f68f2b.json +509 -0
- package/.local/share/amp/threads/T-019c9919-f9ee-766c-90be-af7a07f6a4c6.json +2075 -0
- package/.local/share/amp/threads/T-019c991c-b98b-7158-9083-cc52408beb13.json +7 -0
- package/.local/share/amp/threads/T-019c991d-66d6-72aa-a9a1-105f7df0ea06.json +7 -0
- package/.local/share/amp/threads/T-019c9c2e-71a4-77ff-bd7f-b053da7f9000.json +1637 -0
- package/.local/share/amp/threads/T-019c9c45-27ca-728b-ba77-835115dfa9b2.json +3893 -0
- package/.local/share/amp/threads/T-019c9c48-45dc-736a-9752-e4119fe698f9.json +7 -0
- package/.local/share/amp/threads/T-019c9c4d-266b-72d0-b56e-74a5777e6583.json +7 -0
- package/.local/share/amp/threads/T-019c9c52-ab89-758f-9178-bda99c39d10b.json +7 -0
- package/.local/share/amp/threads/T-019c9c56-5715-72e2-b8b4-87711a842dd1.json +1799 -0
- package/.local/share/opencode/opencode.db +0 -0
- package/.local/share/opencode/opencode.db-shm +0 -0
- package/.local/share/opencode/opencode.db-wal +0 -0
- package/.local/share/opencode/storage/agent-usage-reminder/ses_36870ea98ffe8S5ZOCE4F11yFh.json +6 -0
- package/.local/share/opencode/storage/agent-usage-reminder/ses_3687a3e9affewUnHBzvpiPR6df.json +6 -0
- package/.local/share/opencode/storage/agent-usage-reminder/ses_36886e68dffeKVgUWf6lzXdEEt.json +6 -0
- package/.local/share/opencode/storage/session_diff/ses_36870ea98ffe8S5ZOCE4F11yFh.json +1 -0
- package/.local/share/opencode/storage/session_diff/ses_3687a3e9affewUnHBzvpiPR6df.json +1 -0
- package/.local/share/opencode/storage/session_diff/ses_36886e68dffeKVgUWf6lzXdEEt.json +1 -0
- package/.local/state/replit/log-query.db +0 -0
- package/.local/state/replit/log-query.db-shm +0 -0
- package/.local/state/replit/log-query.db-wal +0 -0
- package/.upm/store.json +1 -1
- package/AGENTS.md +32 -0
- package/bun.lock +137 -103
- package/index.jsx +24 -0
- package/package.json +12 -9
- package/src/agent.js +252 -169
- package/src/app.jsx +96 -0
- package/src/commands.js +66 -38
- package/src/components/AssistantMessage.jsx +83 -0
- package/src/components/ChatArea.jsx +84 -0
- package/src/components/DiffView.jsx +26 -0
- package/src/components/Divider.jsx +8 -0
- package/src/components/Header.jsx +44 -0
- package/src/components/HelpModal.jsx +81 -0
- package/src/components/InputBar.jsx +32 -0
- package/src/components/Spinner.jsx +23 -0
- package/src/components/StatusBar.jsx +44 -0
- package/src/components/SystemMessage.jsx +31 -0
- package/src/components/ThinkBlock.jsx +29 -0
- package/src/components/ToolCallItem.jsx +43 -0
- package/src/components/UserMessage.jsx +11 -0
- package/src/components/Welcome.jsx +14 -0
- package/src/config.js +118 -2
- package/src/hooks/useLayout.js +15 -0
- package/src/hooks/useStore.js +6 -0
- package/src/prompt.js +67 -48
- package/src/store.js +99 -0
- package/src/theme.js +19 -0
- package/src/thinking.js +0 -24
- package/src/toolExecutors.js +521 -23
- package/src/tools.js +124 -4
- package/src/utils.js +32 -0
- package/tsconfig.json +10 -0
- package/index.js +0 -92
- package/src/ui.js +0 -269
|
@@ -40,3 +40,35 @@
|
|
|
40
40
|
{"text":"does envrionment vars get stored in the CLI?","cwd":"/home/runner/workspace"}
|
|
41
41
|
{"text":"if a service requires an API key in my npm package, how do i store it?","cwd":"/home/runner/workspace"}
|
|
42
42
|
{"text":"add a web search tool powered by exa AI","cwd":"/home/runner/workspace"}
|
|
43
|
+
{"text":"if the AI is fed an error, it will not just tell the user to troubleshoot, it will find and fix the error.","cwd":"/home/runner/workspace"}
|
|
44
|
+
{"text":"add a file-picker-max subagent. it has 1-3 arguments. the prompt where what types of files it should find, then the file picker subagent will surf the explore the codebase, then output the files related to what the prompt is requesting. it will be as accurate, using the most capable latest models.","cwd":"/home/runner/workspace"}
|
|
45
|
+
{"text":"my bad. it will take in 1 argument only.","cwd":"/home/runner/workspace"}
|
|
46
|
+
{"text":"it said the subagent failed to return any files. when the subagent is run, it will stop and wait for the subagent's response. surf the web for an accurate reliable model.","cwd":"/home/runner/workspace"}
|
|
47
|
+
{"text":"hi","cwd":"/home/runner/workspace"}
|
|
48
|
+
{"text":"look at openai codex CLI and claude code CLI's system prompt from their github repo, then modify this system prompt to make sure it works as intended.","cwd":"/home/runner/workspace"}
|
|
49
|
+
{"text":".","cwd":"/home/runner/workspace"}
|
|
50
|
+
{"text":"when the agent is running subagents, i want the open/close drawer to work via click.","cwd":"/home/runner/workspace"}
|
|
51
|
+
{"text":"in some terminal apps like codebuff, clicking to interact with the CLI is possible.","cwd":"/home/runner/workspace"}
|
|
52
|
+
{"text":".","cwd":"/home/runner/workspace"}
|
|
53
|
+
{"text":"surf codebuff's github repo, then implement it.","cwd":"/home/runner/workspace"}
|
|
54
|
+
{"text":"rework the CLI tool to use OpenTUI","cwd":"/home/runner/workspace"}
|
|
55
|
+
{"text":"thi","cwd":"/home/runner/workspace"}
|
|
56
|
+
{"text":"rework the app to use OpenTUI","cwd":"/home/runner/workspace"}
|
|
57
|
+
{"text":"thi","cwd":"/home/runner/workspace"}
|
|
58
|
+
{"text":"rework the app to use OpenUI","cwd":"/home/runner/workspace"}
|
|
59
|
+
{"text":"OpenTUI","cwd":"/home/runner/workspace"}
|
|
60
|
+
{"text":"make sure the CLI tool can start","cwd":"/home/runner/workspace"}
|
|
61
|
+
{"text":"null is not an object evaluating text.chunks","cwd":"/home/runner/workspace"}
|
|
62
|
+
{"text":"i dont want the main AI to give a prompt to the file picker like: \"give me an overview of the codebase\". i want it to say the specific type of files it wants to see like: \"show me the main files of this codebase\".","cwd":"/home/runner/workspace"}
|
|
63
|
+
{"text":"i want this applied in all subagent prompts and in AGENTS.md.","cwd":"/home/runner/workspace"}
|
|
64
|
+
{"text":".","cwd":"/home/runner/workspace"}
|
|
65
|
+
{"text":"i want this applied in all subagent prompts and in AGENTS.md.","cwd":"/home/runner/workspace"}
|
|
66
|
+
{"text":"null is not an object evaluating text.chunks","cwd":"/home/runner/workspace"}
|
|
67
|
+
{"text":"give it a todo list tool.","cwd":"/home/runner/workspace"}
|
|
68
|
+
{"text":"i don't see response streaming","cwd":"/home/runner/workspace"}
|
|
69
|
+
{"text":"still don't see it","cwd":"/home/runner/workspace"}
|
|
70
|
+
{"text":"surf the docs to find out if that fixes response streaming.","cwd":"/home/runner/workspace"}
|
|
71
|
+
{"text":"fix response streaming.","cwd":"/home/runner/workspace"}
|
|
72
|
+
{"text":"research all of codebuff's subagents (max mode) and implement them here.","cwd":"/home/runner/workspace"}
|
|
73
|
+
{"text":"i installed the package via bun, but got an error. specifically something with internalS.","cwd":"/home/runner/workspace"}
|
|
74
|
+
{"text":"like i install it in another workspace and ran it, got an error.","cwd":"/home/runner/workspace"}
|