dev/zhi #1

Merged
hzhang merged 28 commits from dev/zhi into main 2026-03-05 19:08:00 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit c366958a37 - Show all commits

View File

@@ -22,7 +22,7 @@ const __filename = fileURLToPath(import.meta.url);
const __dirname = resolve(dirname(__filename)); const __dirname = resolve(dirname(__filename));
// Plugin configuration // Plugin configuration
const PLUGIN_NAME = 'padded-cell'; const PLUGIN_NAME = 'PaddedCell';
// Parse arguments // Parse arguments
const args = process.argv.slice(2); const args = process.argv.slice(2);

View File

@@ -1,5 +1,5 @@
{ {
"id": "padded-cell", "id": "PaddedCell",
"name": "PaddedCell", "name": "PaddedCell",
"version": "0.1.0", "version": "0.1.0",
"description": "Secure password management, safe execution, and coordinated restart", "description": "Secure password management, safe execution, and coordinated restart",

View File

@@ -2,11 +2,13 @@ module pass_mgr
go 1.24.0 go 1.24.0
require github.com/spf13/cobra v1.8.0 require (
github.com/spf13/cobra v1.8.0
golang.org/x/term v0.40.0
)
require ( require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.41.0 // indirect golang.org/x/sys v0.41.0 // indirect
golang.org/x/term v0.40.0 // indirect
) )