cliops 4.0.2__py3-none-any.whl → 4.0.3__py3-none-any.whl

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: cliops
3
- Version: 4.0.2
3
+ Version: 4.0.3
4
4
  Summary: Advanced CLI tool for structured, pattern-based prompt optimization and state management
5
5
  Home-page: https://github.com/iammabd/cliops
6
6
  Author: cliops by mabd
@@ -1,9 +1,9 @@
1
1
  main.py,sha256=eLhDnSUOgWM0-wQ1UkfLduEw6NXMs8b5JuVxzmg0QIk,9828
2
2
  presets.py,sha256=DKIfhwxtBZEC5fYHgXqhuBKou7KYQks_2M8cR3IeWao,3172
3
- cliops-4.0.2.dist-info/licenses/LICENSE,sha256=2J5KKebeJ2AdMaxuYA1fX0ZuDs9MmWp3cpjZX-JqrZs,1079
3
+ cliops-4.0.3.dist-info/licenses/LICENSE,sha256=2J5KKebeJ2AdMaxuYA1fX0ZuDs9MmWp3cpjZX-JqrZs,1079
4
4
  core/__init__.py,sha256=aWl7MZaubJNqrafNCM5VRYg4SZ7sdifrxTWrJC8d-_s,24
5
5
  core/analyzer.py,sha256=mwMmrlV-Pk31mMfKs0NPqBqY3cpNwCq_DWwGaurjPzI,4328
6
- core/branding.py,sha256=7gRXdeJmkGPxYf4iZXHBtPnjMoTffHk3Hykx_XFUDWE,1441
6
+ core/branding.py,sha256=CQrggyyrKGYgdgYuXnqHn6qYr3MQFQ6_gLkIRA_Ia2k,1342
7
7
  core/cache.py,sha256=uDUPRr7Q5gLHl_sUzsybt2nXBl9TSsbo92K8stbs1Pk,1658
8
8
  core/config.py,sha256=aoYCLt-EFM7WiR3_QN049_cfz9_SODuqnErte07DTVM,1388
9
9
  core/optimizer.py,sha256=n72DSf4pc4dqW7g8KPH1GOw8W8qpdi6q45tI02miuok,7762
@@ -11,8 +11,8 @@ core/patterns.py,sha256=CW2uFm1z8pCeQCio2oT39vkEJ9z_ifF-oRJtoufcyEM,9310
11
11
  core/setup.py,sha256=gP6IuoAbrUKpwHQIwlHHufZyd7F3ZUtg-B3TJgWmCAE,2865
12
12
  core/state.py,sha256=pWAdv085KSc6V7Idy3DdVCL35QbICNcjO3chi09yvOU,2654
13
13
  core/validation.py,sha256=2wTVQE9MsHeN_3WhV0EiixHmFd3EXzV5t67TS_auT9I,1896
14
- cliops-4.0.2.dist-info/METADATA,sha256=k9kgkwnO8DwAdHXdtrLOqhFedPUPg0FITejIrQWuANY,4182
15
- cliops-4.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- cliops-4.0.2.dist-info/entry_points.txt,sha256=F8ZncVlnk83ELj0TGXUYS-qYvmaP-owQyU20I7jRefg,37
17
- cliops-4.0.2.dist-info/top_level.txt,sha256=dV-NRp_bb_IkCFfEXDbA1mHA5SshVNbUsxaF809itG8,18
18
- cliops-4.0.2.dist-info/RECORD,,
14
+ cliops-4.0.3.dist-info/METADATA,sha256=BVWBIEIdRzsdn6LnvnMqaWQkpmpuKym6Ezza-k9rL5c,4182
15
+ cliops-4.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ cliops-4.0.3.dist-info/entry_points.txt,sha256=F8ZncVlnk83ELj0TGXUYS-qYvmaP-owQyU20I7jRefg,37
17
+ cliops-4.0.3.dist-info/top_level.txt,sha256=dV-NRp_bb_IkCFfEXDbA1mHA5SshVNbUsxaF809itG8,18
18
+ cliops-4.0.3.dist-info/RECORD,,
core/branding.py CHANGED
@@ -27,7 +27,7 @@ def show_input_frame(prompt_text: str) -> str:
27
27
  """Display chatbox-style input prompt"""
28
28
  # Input prompt panel
29
29
  panel = Panel(
30
- f"[bold cyan]💬 {prompt_text}[/bold cyan]",
30
+ f"[bold cyan]>> {prompt_text}[/bold cyan]",
31
31
  border_style="white",
32
32
  padding=(1, 2),
33
33
  title="[dim]CLIOPS Input[/dim]",
@@ -39,12 +39,8 @@ def show_input_frame(prompt_text: str) -> str:
39
39
  input_panel = Panel(
40
40
  "[dim]Type your response here...[/dim]",
41
41
  border_style="white",
42
- padding=(0, 1),
43
- height=3
42
+ padding=(0, 1)
44
43
  )
45
44
  console.print(input_panel)
46
-
47
- # Move cursor up and get input
48
- console.print("\033[3A", end="") # Move up 3 lines
49
- console.print(" ", end="") # Indent
45
+ console.print("[bold white]>>> [/bold white]", end="")
50
46
  return input()
File without changes