@aimlsuperagent/agent 0.1.5 → 0.1.6

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/AGENTS.md CHANGED
@@ -18,11 +18,15 @@ The framework must be:
18
18
  1. Read `REPO_SOURCE_OF_TRUTH.json` before making structural claims about this repo.
19
19
  2. Read `WORKING_NOTES.md` only when present and directly relevant.
20
20
  3. Prefer targeted search over loading broad folders.
21
- 4. Do not add secrets, tokens, private URLs, account IDs, or credential values to examples.
22
- 5. Keep examples generic unless explicitly marked as fictional.
23
- 6. Make small diffs with a clear reason.
24
- 7. Run the fastest meaningful verification after changes.
25
- 8. Update durable notes only when a fact will help future work.
21
+ 4. Before changing code, confirm which backend, service, deployment, or environment is live when relevant.
22
+ 5. Check deployment/proof notes when the task depends on release or live behavior.
23
+ 6. Inspect the relevant source file before proposing or applying changes.
24
+ 7. Treat old notes as suspect until verified against source or production reality.
25
+ 8. Do not add secrets, tokens, private URLs, account IDs, or credential values to examples.
26
+ 9. Keep examples generic unless explicitly marked as fictional.
27
+ 10. Make small diffs with a clear reason.
28
+ 11. Run the fastest meaningful verification after changes.
29
+ 12. Update durable notes only when a fact will help future work.
26
30
 
27
31
  ## Context Minimizer Rules
28
32
 
@@ -83,4 +87,3 @@ For release changes:
83
87
  - confirm repo status
84
88
  - confirm private/public state before publication
85
89
  - confirm no secrets are present
86
-
package/README.md CHANGED
@@ -131,7 +131,7 @@ After `init` and `check`, tell your AI coding assistant:
131
131
  ```text
132
132
  Read AGENTS.md, REPO_SOURCE_OF_TRUTH.json, and WORKING_NOTES.md first.
133
133
  Use them as the project operating context.
134
- Before editing code, verify the source of truth, search only the files relevant to this task, make the smallest safe diff, run the fastest meaningful check, and update durable notes only if reality changed.
134
+ Before changing code, confirm which backend, service, deployment, or environment is live when relevant; check DEPLOYMENT_LOG.md and PRODUCTION_CHECK.md when available; inspect the relevant source file; avoid stale notes; make the smallest safe diff; run the fastest meaningful proof; and update durable memory only if reality changed.
135
135
  Do not store secrets, credential values, private customer data, local machine paths, or scratch-only notes in committed files.
136
136
  ```
137
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aimlsuperagent/agent",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "A token-efficient operating framework for AI coding assistants.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,6 +14,7 @@ Next steps:
14
14
  Then tell your AI assistant:
15
15
  Read AGENTS.md, REPO_SOURCE_OF_TRUTH.json, and WORKING_NOTES.md first.
16
16
  Use them as project operating context before editing code.
17
+ Before changing code, confirm which backend, service, deployment, or environment is live when relevant; check DEPLOYMENT_LOG.md and PRODUCTION_CHECK.md when available; inspect the relevant source file; avoid stale notes; make the smallest safe diff; run the fastest meaningful proof; and update durable memory only if reality changed.
17
18
 
18
19
  Docs:
19
20
  https://github.com/marvinbfreedman/aimlsuperagent
@@ -13,6 +13,10 @@ Describe the project in one paragraph.
13
13
  ## Working Rules
14
14
 
15
15
  - Use targeted search before loading broad folders.
16
+ - Before changing code, confirm which backend, service, deployment, or environment is live when relevant.
17
+ - Check `DEPLOYMENT_LOG.md` and `PRODUCTION_CHECK.md` when the task depends on release or live behavior.
18
+ - Inspect the relevant source file before proposing or applying changes.
19
+ - Treat old notes as suspect until verified against source or production reality.
16
20
  - Make small, task-traceable diffs.
17
21
  - Verify production reality before changing code when the task depends on live state.
18
22
  - Do not store secrets in notes, examples, commits, or logs.