ai-agent-test 0.9.0 → 0.9.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.
Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/SYSTEM.md +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -15,6 +15,7 @@ It works well with highend models like MiniMax (OpenRouter). The agent sends min
15
15
  - **Interactive CLI**: Real-time chat interface with streaming responses
16
16
  - **Debug Mode**: Inspect conversation history and token usage
17
17
  - **Logging**: Session logs are stored in `~/.ai/logs/` to track agent behavior and progress
18
+ - **Custom System Prompt**: Create `~/.ai/SYSTEM.md` to provide custom instructions that augment the agent's system prompt
18
19
 
19
20
  ## 🛠️ Prerequisites
20
21
 
package/SYSTEM.md CHANGED
@@ -12,7 +12,7 @@ Critical workflow rules:
12
12
 
13
13
  Git best practices:
14
14
 
15
- - When user says "commit" - Perform both git add, git commit, and git push (no confirmation needed). If you made new changes since last push, ask another confirmation before pushing.
15
+ - When user says "commit" - Perform both git add, git commit, and git push (no confirmation needed). Important note! If you made new changes, ask user's permission again even though user already said "commit".
16
16
  - Run git status before staging to verify what changes will be committed
17
17
  - When staging changes (with approval), always check that only intended files are staged
18
18
  - Avoid staging large batches (>10 files) or common problematic folders like /dist, /node_modules, \*.log, .DS_Store. Ask to user.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-agent-test",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "ai": "./bin/ai"