@aimlsuperagent/agent 0.1.4 → 0.1.5

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/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 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.
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.5",
4
4
  "description": "A token-efficient operating framework for AI coding assistants.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,10 @@ 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
+
14
18
  Docs:
15
19
  https://github.com/marvinbfreedman/aimlsuperagent
16
20