@aimlsuperagent/agent 0.1.4 → 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
@@ -124,6 +124,17 @@ Check a project for SuperAgent readiness:
124
124
  npx @aimlsuperagent/agent check .
125
125
  ```
126
126
 
127
+ ## After Init
128
+
129
+ After `init` and `check`, tell your AI coding assistant:
130
+
131
+ ```text
132
+ Read AGENTS.md, REPO_SOURCE_OF_TRUTH.json, and WORKING_NOTES.md first.
133
+ Use them as the project operating context.
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
+ Do not store secrets, credential values, private customer data, local machine paths, or scratch-only notes in committed files.
136
+ ```
137
+
127
138
  Generated notes are intended to be safe to commit only after you keep them value-free: record names, roles, decisions, and verification summaries, never credential values, private customer data, local machine paths, or scratch-only notes.
128
139
 
129
140
  For personal machine-wide use, install the CLI globally:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aimlsuperagent/agent",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A token-efficient operating framework for AI coding assistants.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,11 @@ Next steps:
11
11
  npx @aimlsuperagent/agent init .
12
12
  npx @aimlsuperagent/agent check .
13
13
 
14
+ Then tell your AI assistant:
15
+ Read AGENTS.md, REPO_SOURCE_OF_TRUTH.json, and WORKING_NOTES.md first.
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.
18
+
14
19
  Docs:
15
20
  https://github.com/marvinbfreedman/aimlsuperagent
16
21
 
@@ -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.