taskai-cli 0.1.4__tar.gz → 0.1.6__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskai-cli
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Author-email: Alex Paskal <alexcpaskal@gmail.com>
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: google-genai>=2.8
@@ -37,11 +37,25 @@ Here's what you can do:
37
37
 
38
38
  Run `task show examples` to print a comprehensive set of examples, and grep for the ones that you're interested in!
39
39
 
40
+ Run `task` by itself to run in interactive mode, which improves performance.
40
41
 
41
42
  # Installation
42
43
 
44
+ `pip install taskai-cli`
43
45
 
44
46
  # Configuration
45
47
 
48
+ For first time usage, run our setup command:
46
49
 
50
+ `task setup`
51
+
52
+ This will walk you through the necessary steps to get all features set up.
53
+
54
+ In order to edit or view your configurations, you can use the `task config` command family
55
+
56
+ ```bash
57
+ task config show # --> lists your current configuration options
58
+ task config set {key} {value} # --> Sets a given value
59
+ task config get {key} # retrieves a given value
60
+ ```
47
61
 
@@ -26,11 +26,25 @@ Here's what you can do:
26
26
 
27
27
  Run `task show examples` to print a comprehensive set of examples, and grep for the ones that you're interested in!
28
28
 
29
+ Run `task` by itself to run in interactive mode, which improves performance.
29
30
 
30
31
  # Installation
31
32
 
33
+ `pip install taskai-cli`
32
34
 
33
35
  # Configuration
34
36
 
37
+ For first time usage, run our setup command:
35
38
 
39
+ `task setup`
40
+
41
+ This will walk you through the necessary steps to get all features set up.
42
+
43
+ In order to edit or view your configurations, you can use the `task config` command family
44
+
45
+ ```bash
46
+ task config show # --> lists your current configuration options
47
+ task config set {key} {value} # --> Sets a given value
48
+ task config get {key} # retrieves a given value
49
+ ```
36
50
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "taskai-cli"
3
- version = "0.1.4"
3
+ version = "0.1.6"
4
4
  description = ""
5
5
  authors = [{name = "Alex Paskal", email = "alexcpaskal@gmail.com"}]
6
6
  readme = "README.md"
@@ -6,6 +6,7 @@ import builtins
6
6
  import fnmatch
7
7
  import sys
8
8
  import subprocess
9
+ import getpass
9
10
 
10
11
  # local
11
12
  from taskai.json_dir_database import JsonDirectoryDatabase
@@ -25,7 +26,7 @@ from rich.prompt import Prompt
25
26
 
26
27
  # config
27
28
  DB_PATH = ".taskai/task_db"
28
- USER = os.getenv("USER")
29
+ USER = os.getenv("USER") if sys.platform == "linux" else os.getenv('USERNAME')
29
30
  db = JsonDirectoryDatabase(
30
31
  DB_PATH,
31
32
  USER
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes