pythia-plsql 0.1.0 → 0.1.2
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 +29 -0
- package/package.json +21 -6
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/thaildhe172591/pythia/main/assets/logo.png" alt="pythia" width="280" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# pythia-plsql
|
|
6
|
+
|
|
7
|
+
> Oracle's MCP gives your agent a connection. **pythia gives it the judgment to use it.**
|
|
8
|
+
|
|
9
|
+
One-command installer for [pythia](https://github.com/thaildhe172591/pythia) —
|
|
10
|
+
PL/SQL development on Oracle Database for AI coding agents (Claude Code,
|
|
11
|
+
Codex, Cursor and 70+ more):
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx pythia-plsql
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
It finds Python, installs the [`pythia-plsql`](https://pypi.org/project/pythia-plsql/)
|
|
18
|
+
package from PyPI (CLI + expert data-dictionary queries + the seven-skill
|
|
19
|
+
pack), installs the skills into your agents via `npx skills add`, and
|
|
20
|
+
scaffolds `.pythia/connections.json`. Without Node the pip package alone
|
|
21
|
+
still carries the whole kit.
|
|
22
|
+
|
|
23
|
+
What the kit does: explore schemas too big to dump, measure blast radius
|
|
24
|
+
**before** touching anything, and land changes through a snapshot-verified
|
|
25
|
+
write path that never lies about rollback
|
|
26
|
+
(exit codes: `0` clean · `1` refused · `3` written-but-broken).
|
|
27
|
+
|
|
28
|
+
Docs, security model and the honest-rollback table:
|
|
29
|
+
**https://github.com/thaildhe172591/pythia**
|
package/package.json
CHANGED
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pythia-plsql",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "One-command installer for pythia: PL/SQL development for AI agents on Oracle Database. Installs the Python CLI, the seven-skill pack, and the .pythia/ config scaffold.",
|
|
5
|
-
"bin": {
|
|
6
|
-
|
|
5
|
+
"bin": {
|
|
6
|
+
"pythia-plsql": "bin.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin.js"
|
|
10
|
+
],
|
|
7
11
|
"license": "MIT",
|
|
8
|
-
"repository": {
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/thaildhe172591/pythia.git"
|
|
15
|
+
},
|
|
9
16
|
"homepage": "https://github.com/thaildhe172591/pythia",
|
|
10
|
-
"keywords": [
|
|
11
|
-
|
|
17
|
+
"keywords": [
|
|
18
|
+
"oracle",
|
|
19
|
+
"plsql",
|
|
20
|
+
"database",
|
|
21
|
+
"agent-skills",
|
|
22
|
+
"sql"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
}
|
|
12
27
|
}
|