atomnote 0.0.1__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.
atomnote/__init__.py ADDED
@@ -0,0 +1 @@
1
+ """atomnote - Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools"""
atomnote/cli.py ADDED
@@ -0,0 +1,20 @@
1
+ """atomnote - the front door. Help first: every verb is here before it works."""
2
+ from __future__ import annotations
3
+
4
+ import click
5
+
6
+ CTX = {"help_option_names": ["-h", "--help"]}
7
+
8
+
9
+ @click.group(context_settings=CTX, invoke_without_command=True)
10
+ @click.pass_context
11
+ def main(ctx: click.Context) -> None:
12
+ """atomnote - Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools"""
13
+ if ctx.invoked_subcommand is None:
14
+ click.echo(ctx.get_help())
15
+
16
+
17
+ @main.command(context_settings=CTX)
18
+ def hello() -> None:
19
+ """Say hello - the stub every verb starts as."""
20
+ click.echo("Hello from atomnote!")
atomnote/py.typed ADDED
File without changes
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.3
2
+ Name: atomnote
3
+ Version: 0.0.1
4
+ Summary: Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools. Name reserved; the tool follows.
5
+ Author: Mike Bailey
6
+ Classifier: Development Status :: 1 - Planning
7
+ Requires-Dist: click>=8.1
8
+ Requires-Python: >=3.11
9
+ Description-Content-Type: text/markdown
10
+
11
+ # atomnote
12
+
13
+ Atomic notes: typed, schema-checked markdown atoms; the note command and its MCP tools
14
+
15
+ ## Quick start
16
+
17
+ <!-- The one command that shows it working, and what you see. -->
18
+
19
+ ## Installation
20
+
21
+ <!-- How it gets onto a machine. -->
22
+
23
+ ## Usage
24
+
25
+ <!-- The verbs, or a link to `atomnote --help`. -->
26
+
27
+ ## Development
28
+
29
+ <!-- How to run it from a checkout and how to test it. -->
30
+
31
+ ## Status
32
+
33
+ **0.0.1 reserves the name.** Nothing works yet. The `note` command moves here
34
+ next, from skillbox's slipbox skill, where it runs today: it reads and writes
35
+ atomic markdown notes for the slipbox and for task stores, and serves them as
36
+ MCP tools (`note mcp`). The command stays `note`; `atomnote` is the package.
@@ -0,0 +1,7 @@
1
+ atomnote/__init__.py,sha256=fYw7VPt5KLjTNj1dfP4JIslcSbFKrqdsul2_HmUT6-k,104
2
+ atomnote/cli.py,sha256=WOhw7L0xYVhaLScMCVciVrjehkgDUFHeynyFo3EblLc,634
3
+ atomnote/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ atomnote-0.0.1.dist-info/WHEEL,sha256=1uB4K0BXH0KDzZOLGYqB4NnSgGon9oosxpA-QGkDuEA,80
5
+ atomnote-0.0.1.dist-info/entry_points.txt,sha256=g68XGRHzKq6swY3RHITW67G5PHeeC_2uVXwNssGkd1A,48
6
+ atomnote-0.0.1.dist-info/METADATA,sha256=Dh_mOFtJoHSXo_Uc4Lkhvy69oxi6oW_DE73NLxKlkk8,1039
7
+ atomnote-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.9
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ atomnote = atomnote.cli:main
3
+