@papert-code/papert-code 0.3.5 → 0.3.8
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 +15 -0
- package/dist/cli.js +135256 -120953
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -99,6 +99,21 @@ Keyboard shortcuts: `Ctrl+C` cancels the current turn, `Ctrl+D` exits on an empt
|
|
|
99
99
|
- `.papert/agents/` for specialized subagents
|
|
100
100
|
- MCP servers for external toolchains and data sources
|
|
101
101
|
|
|
102
|
+
## Governance and platform upgrades
|
|
103
|
+
|
|
104
|
+
Recent improvements add safety, admin policy gating, and structured registries that make Papert Code more robust in enterprise and headless scenarios.
|
|
105
|
+
|
|
106
|
+
- Safety preflight checks with policy-driven checker rules.
|
|
107
|
+
- Admin-controls polling to dynamically enable or disable MCP, extensions, and skills.
|
|
108
|
+
- Core skills system for consistent headless usage and skill discovery.
|
|
109
|
+
- Model registry with capability metadata per auth type.
|
|
110
|
+
- Deferred CLI command execution so admin policy applies before commands run.
|
|
111
|
+
- Optional admin control site for centralized policy management.
|
|
112
|
+
|
|
113
|
+
Details: `docs/features/safety-admin-core-cli.md`
|
|
114
|
+
Admin site: `docs/features/admin-controls-site.md`
|
|
115
|
+
CLI env: `PAPERT_ADMIN_URL`, `PAPERT_ADMIN_EMAIL`, `PAPERT_ADMIN_PASSWORD`, `PAPERT_ADMIN_TOKEN`
|
|
116
|
+
|
|
102
117
|
## Project settings and ignore files
|
|
103
118
|
|
|
104
119
|
Papert Code looks for `.papert/settings.json` in your project or `~/.papert/settings.json` for user defaults. Example:
|