You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/source/reference.rst
+56-1Lines changed: 56 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,63 @@ Subcommands
71
71
72
72
(Not yet implemented) Update a checked-out kernel to the latest version from the central repository.
73
73
74
+
Kernel Indexer
75
+
---------------
76
+
77
+
The ``kernel_indexer`` script indexes kernels and generates package manifests for inventory and management purposes.
78
+
79
+
**index**
80
+
81
+
.. code-block:: bash
82
+
83
+
./kernel_indexer index --kernel-root <PATH> [--language <LANG>] [--kernel-name <NAME>] [--kernel-version <VER>]
84
+
85
+
Index kernels and generate manifest files. Discovers all kernels in the repository and extracts package information from conda environments and language-specific package managers (e.g., R packages).
86
+
87
+
- ``--kernel-root``: Path to kernel repository root (required if not in config)
88
+
- ``--language``: Filter by specific language (R, Python). If omitted, processes all languages
89
+
- ``--kernel-name``: Index only a specific kernel (optional)
90
+
- ``--kernel-version``: Index only a specific version (requires --kernel-name)
0 commit comments